-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
66 lines (57 loc) · 1.05 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
span{
font-size: 17px;
}
h1{
font-size: 50px;
text-align: left;
color: crimson;
}
h2{
font-size: 22px;
width: 500px;
color: black;
box-shadow: 0 0 8px #e63946 ;
border-radius: 0px;
padding: 7px;
text-shadow: 2px 2px 5px #e63946;
background-color: #f7f1f1;
border: 0px solid #e63946;
margin-bottom: 5px;
margin-top: 5px;
}
h2:hover{
color: goldenrod;
font-size: 30px;
font-weight: 200px;
border-radius: 10px;
}
.blue{
display: fl;
margin-left: 10px;
border-radius: 5px;
padding: 5px;
&:hover{
background-color: #e9ddde;
}
}
img{
width: 100px;
height: auto;
margin: auto;
box-shadow: black;
border-radius: 50%;
&:hover{
box-shadow: 0 0 20px #e63946;
}
}
button{
background-color:goldenrod;
color: white;
border: none;
border-radius: 5px;
padding: 10px 20px;
cursor: pointer;
&:hover{
background-color: #c4302f;
}
}