-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
103 lines (90 loc) · 1.75 KB
/
Copy pathstyles.css
File metadata and controls
103 lines (90 loc) · 1.75 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
98
99
100
101
102
103
* {
margin: 0;
padding: 0;
}
body {
background: rgb(188, 235, 188);
font-family: 'Roboto', sans-serif;
}
.tittle {
text-align: center;
font-size: 50px;
margin: 0;
font-weight: 900;
position: relative;
top: 8px;
}
.tittle-box {
position: relative;
width: 60%;
height: 80px;
background: rgb(238, 223, 173);
border-radius: 0 0 20px 20px;
margin: 0 auto;
box-shadow: 1px -1px 22px 1px rgba(0,0,0,0.22)
}
.subtittle {
text-align: center;
margin: 10px 0 10px 0;
font-size: 30px;
font-weight: 900;
}
.timer {
text-align: center;
font-size: 20px;
margin: 0 0 10px 0;
}
#tiempoReaccion {
font-weight: bold;
}
.center {
position: relative;
width: 70%;
height: 75vh;
background: rgb(240, 234, 211);
margin: 0 auto;
border-radius: 20px;
box-shadow: 1px -1px 22px 1px rgba(0,0,0,0.22);
}
#forma {
width: 200px;
height: 200px;
background: rgb(255, 86, 86);
background-size: cover;
position: absolute;
top: 40%;
left: 40%;
/*box-shadow: 1px -1px 22px 1px rgba(0,0,0,0.22);*/
}
#forma:hover {
cursor: pointer;
}
.bestTime-box {
position: absolute;
top: 0;
right: 0;
width: 15%;
height: 80px;
background: rgb(238, 223, 173);
border-radius: 0 0 0 20px;
box-shadow: 1px -1px 22px 1px rgba(0,0,0,0.22)
}
.time-info {
font-size: 16px;
position: absolute;
top: 27px;
left: 60px;
font-weight: bold;
}
.trophy {
width: 30px;
position: relative;
left: 20px;
top: 22px;
}
.autor {
position: absolute;
bottom: 0;
font-size: 14px;
font-weight: bold;
}