-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
44 lines (37 loc) · 817 Bytes
/
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
*{
margin:0; padding:0;
font-family: 'Acme', sans-serif;
}
body{ background-color: pink; }
.container{ width: 70%; margin: auto; text-align: center; }
.dice{ text-align:center; display: inline-block; }
#f5{
margin:50pxs;
padding-top:20px;
transform:rotate(0deg);
transition-property:all;
transition-duration:6s;
}
#f5:hover{
transform:rotate(360deg);
}
p{
font-size: 4rem; color: #00b894;
text-shadow: 1px 1px white;
}
p:hover{
color:green;
}
button{
padding:10px; background-color:#00b894; color: white;font-size:30px;
border:none; margin:40px 100px 150px 150px;
transform:rotate(0deg);
transition-property:all;
transition-duration:6s;
}
button:hover{
transform:rotate(360deg);
background-color:green;
}
img{ width: 90%;margin:30px;padding:2px;
}