-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
98 lines (98 loc) · 1.63 KB
/
Copy pathstyle.css
File metadata and controls
98 lines (98 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
98
/*https://cutt.ly/ZfrSrHE*/
*{
padding: 0;
margin: 0;
box-sizing: border-box;
text-decoration: none;
}
body{
font-family: sans-serif;
background-color: black;
}
span{
color: white;
position: absolute;
bottom: 0;
z-index: 1;
padding: 5px;
cursor: pointer;
}
svg{
background-color: #1ABC9C;
margin-top: 25vh;
}
.hide{
display: none !important;
}
h1{
position: absolute;
bottom: 0;
width: 100%;
font-size: 5em;
display: block;
text-align: center;
background-color: chocolate;
padding: .2em;
}
table{
position: absolute;
font-size: 2em;
color: chartreuse;
}
table:nth-child(2){
right: 0;
}
.comenzar{
position: absolute;
top: 0;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
cursor: pointer;
}
.comenzar > div{
position: relative;
margin-top: -15rem;
background-color: indigo;
color: white;
padding: 3rem;
height: auto;
border-radius: 1rem;
font-size: 3em;
}
div.score{
display: flex;
justify-content: center;
align-items: center;
position: absolute;
width: 100%;
margin: 0 auto;
top: 80px;
}
div.score > div{
background-color: green;
color: white;
text-align: center;
width: 100px;
height: 100px;
line-height: 100px;
font-size: 50px;
margin: 5px;
box-sizing: border-box;
border-radius: 15px;
}
.container{
display: flex;
justify-content: center;
align-items: center;
}
a{
position: absolute;
bottom: 0;
z-index: 1;
right: 0;
padding: 5px;
color: aliceblue;
}