-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
66 lines (57 loc) · 1.06 KB
/
main.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
*{
font-family:"Fragment Mono",sans-serif;
padding:30px;
line-height:40px;
box-sizing: border-box;
}
body{
background-color: #3A5BA0;
}
.box{
width:500px;
margin:20px auto;
background-color: #FFA500;
border: 5px solid #FEF9A7;
padding:5px;
text-align: center;
border-radius:20px;
transition: transform 0.3s ease-in-out;
}
.box:hover {
transform: scale(1.05);
background-color:#F79327;
border-color: #F7DB6A;
}
h1{
text-align: center;
margin-top:30px;
font-size:30px;
color:#B8E8FC;
text-transform: uppercase;
text-decoration: underline;
display: flex;
justify-content: center;
align-items: center;
}
h1 a{
font-size: 33px;
}
a{
display: inline-block;
font-size:20px;
text-align: center;
color:white;
text-decoration: none;
transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}
h1 a:hover{
color: #B8E8FC;
transform: scale(1.1);
}
a:hover{
color: #080202;
transform: scale(1.05);
}
a:active {
transform: scale(0.9);
}