-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
40 lines (37 loc) · 1.09 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
@import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap");
body {
margin: 0;
height: 100vh;
font-family: 'Lobster', cursive;
font-size: 5rem;
}
.content {
min-height: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
background-color: #5499ca;
}
.content div {
cursor: pointer;
color: #fcedd8;
text-shadow: 5px 5px 0px #eb452b, 10px 10px 0px #efa032, 15px 15px 0px #46b59b, 20px 20px 0px #017e7f, 25px 25px 0px #052939, 30px 30px 0px #3d6f92, 35px 35px 0px #3d6f92, 40px 40px 0px #3d6f92, 45px 45px 0px #3d6f92;
-webkit-transition: 200ms ease-in-out;
transition: 200ms ease-in-out;
}
.content div:hover {
font-size: 8rem;
-webkit-transform: rotate(-13deg);
transform: rotate(-13deg);
}
/*# sourceMappingURL=main.css.map */