-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
92 lines (89 loc) · 1.29 KB
/
stylesheet.css
File metadata and controls
92 lines (89 loc) · 1.29 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
body{
background-color:#303330;
width: 80%;
height: fit-content;
position: relative;
left: 10%;
}
.timer{
position: relative;
height: 25vh;
}
.stopwatch{
position: absolute;
left: 65%;
top: 25%;
width: 20vw;
color: white;
}
.beststopwatch{
position: absolute;
top: 25%;
left: 85%;
color: white;
}
.time{
position: absolute;
top: 10%;
left: 65%;
width: 20vw;
color: white;
}
.besttime{
position: absolute;
top: 10%;
left: 85%;
color: white;
}
.start{
position:relative;
height:20vh;
}
.info{
color: green;
text-align: left;
font-size: 35px;
left: 2%;
position: absolute;
}
.newgame{
color: green;
text-align: right;
font-size: 25px;
left: 80%;
position: absolute;
}
.newgame:hover{
cursor: pointer;
}
.grid{
border: 1px solid white;
position: relative;
left: 5%;
height: 92vh;
width: 87%;
border-radius: 15px;
}
.tiles{
height: 20vh;
width: 20vh;
margin-top: 20px;
background-color: black;
margin-left: 20px;
color: green;
font-size: 58px;
border: black;
border-radius: 15px;
}
.tiles1{
height: 20vh;
width:20vh;
margin-top: 20px;
margin-right: 10px;
background-color: black;
margin-left: 20px;
color: green;
font-size: 58px;
border: black;
border-radius: 15px;
}