-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
67 lines (57 loc) · 1.02 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');
.myinfo {
padding: 25px;
}
.myname{
font-family: 'Dancing Script', cursive;
color: orange;
}
.mydescription{
font-size: 16px;
font-family: 'Cairo', sans-serif;
}
.a-btn{
padding: 15px;
border: solid 1px blue;
color: blue;
border-radius: 25px;
margin-left: 10px;
}
.a-btn:hover{
border: solid 1px lightskyblue;
color: lightskyblue;
}
hr {
border: 1px solid rgb(245, 241, 241);
}
.projects {
color: orange;
}
.projects:hover {
color: rgb(253, 204, 113);
}
footer li a{
font-size: 20px;
}
footer li a:hover{
border-bottom: solid 2px orange;
}
.card{
padding: 15px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover{
transform: scale(1.0) rotate(-3deg);
box-shadow: 0 6px 10px rgba(255, 102, 0, 0.2);
}
.card a{
color: orange;
font-size: 18px;
font-weight: bold;
}
.card a:hover{
color: yellow;
}
.site {
margin-left: 10px;
}