-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
71 lines (63 loc) · 1.57 KB
/
style.css
File metadata and controls
71 lines (63 loc) · 1.57 KB
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
68
69
70
71
html, body {
background-color: rgb(187, 187, 187);
}
.logo {
background-image: url("img/trash_utils.png");
position: relative;
height: 200px;
width: 200px;
background-size: contain;
}
.gear {
background-image: url("img/gear.png");
background-position: center;
background-repeat: no-repeat;
background-size: contain;
position: absolute;
-webkit-animation:spin 4s linear infinite;
-moz-animation:spin 4s linear infinite;
animation:spin 4s linear infinite;
height: 200px;
width: 200px;
}
.animation {
border: 20px solid grey;
border-radius: 40px;
display: flex;
align-items: center;
justify-content: center;
background-color: rgb(138, 138, 138);
box-shadow: 12px 12px 2px 1px rgba(0, 0, 0, .2);
}
.content {
border: 20px solid grey;
border-radius: 40px;
background-color: rgb(104, 93, 93);
padding: 20px;
height: 1500px;
}
h1 {
margin-top: 0;
font-style: bold;
font-family: Impact;
font-size: 10vw;
color: lightgrey;
text-align: center;
}
ul {
font-size: 5vw;
list-style: none;
font-family: Impact;
}
li:hover {
color: green;
margin-left: 1%;
border: 5px dotted lightgreen;
-moz-transform: rotate(2deg);
-webkit-transform: rotate(2deg);
-webkit-transform: rotate(2deg);
transform:rotate(2deg);
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }