-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (83 loc) · 1.63 KB
/
style.css
File metadata and controls
97 lines (83 loc) · 1.63 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
*{
margin: 0;
padding: 0;
border: none;
text-decoration: none;
}
body{
background-image: url(img/back.png);
background-size: cover;
font-family: calibri;
text-transform: uppercase;
font-weight: bolder;
color: #fff;
}
.sonicRun{
height: 100px;
width: 100px;
}
form {
text-shadow: 2px 2px 1px #000;
font-size: 22px;
margin: 30px auto;
text-align: center;
}
table {
margin: 30px auto;
}
.img {
width: 100%;
height: 100%;
}
table td {
text-align: center;
margin: auto;
border: 1px solid #fff;
border-radius: 20px;
width: 150px;
height: 150px;
background-color: rgba(255, 255, 255, 0.4);
}
#vencedor{
margin: 50px auto;
color: #FFF;
width: 17%;
height: 70px;
display: flex;
align-items: center;
justify-content: center;
font-weight: bolder;
font-size: 22px;
border-radius: 13px;
}
button{
display: block;
margin: 30px auto;
border: 1px solid transparent;
color: #fff;
border-radius: 25px;
padding: 15px 40px;
border-radius: 13;
font-family: calibri;
text-transform: uppercase;
font-weight: bolder;
font-size: 20px;
background-color: rgb(8, 50, 236);
opacity: 0.65;
box-shadow: 10px 5px 5px black;
}
button:hover{
font-size: 25px;
cursor: pointer;
}
i{
color: yellow;
font-size: 28px;
}
button:hover > i{
animation: mudar 2s alternate-reverse infinite;
}
@keyframes mudar{
0% {transform: rotate(0deg);}
100% {transform: rotate(360deg);}
}