-
Notifications
You must be signed in to change notification settings - Fork 0
/
looks.css
94 lines (85 loc) · 1.64 KB
/
looks.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
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
body {
background-image: url("darkness2.jpg");
color: white;
}
#About {
font-size: xx-large;
font-weight: bolder;
position: absolute;
width: 100%;
top: 10%;
left: 0%;
text-align: center;
font-size: xx-large;
font-style: italic;
}
#TimeLabel {
font-size: x-large;
position: absolute;
left: 2%;
width: 30%;
top: 35%;
text-align: center;
}
#Time {
font-size: x-large;
position: absolute;
left: 2%;
width: 30%;
top: 40%;
text-align: center;
}
#Score {
font-size: x-large;
position: absolute;
left: 2%;
width: 30%;
top: 45%;
text-align: center;
}
#HighScores {
font-size: x-large;
position: absolute;
left: 77%;
text-align: center;
top: 30%;
}
table, td {
border: 1px solid #66fcf1;
border-collapse: collapse;
padding: 15px;
}
.grid-container {
display: grid;
position: absolute;
left: 35%;
top: 30%;
grid-template-columns: auto auto auto auto auto;
background-color: rgb(12, 12, 12);
width: 446px;
height: 360px;
padding: 10px;
grid-gap: 10px 10px;
border-radius: 10px;
border-color: rgb(255, 255, 255);
}
.grid-item {
background-color: rgb(58, 58, 58);
color:#8abbb8;
border: 1px solid #56c9c1;
padding: 20px;
width: 80px;
height: 80px;
font-size: 26px;
text-align: center;
}
#Start {
position: absolute;
left: 47.2%;
width: 6%;
height: 4%;
top: 20%;
border: solid #66FcF1;
background-color: black;
color: white;
}