-
Notifications
You must be signed in to change notification settings - Fork 0
/
project1.css
110 lines (103 loc) · 2.07 KB
/
project1.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
body {
background-color: #000;
}
.big {
display: flex;
}
.big > div {
width: 40%;
}
.upper-col {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.upper-col button {
display: flex;
flex-direction:row;
align-items: center;
justify-content: center;
background-color:white;
border: none;
color:black;
padding: 6px 10px;
border-radius: 7px;
cursor: pointer;
margin: 5px;
}
.problem {
display: grid;
grid-template-columns: 30px 30px 30px;
grid-gap: 2px 10px;
justify-content: center;
margin: auto;
}
.question {
height: 30px;
width: 30px;
margin: 3px;
border: solid white;
/* background-color: blue; */
border-radius: 10px;
}
.workspace {
display: none;
grid-template-columns: 55px 55px 55px 55px 55px;
grid-gap: 10px 15px;
justify-content: center;
width: 410px;
border-radius: 10px;
background-color: bisque;
margin: 10px auto;
padding: 25px 0;
}
.work {
height: 60px;
width: 60px;
margin: auto;
/* background-color:red; */
border-radius: 1px;
/* border: solid white; */
border-radius: 10px;
}
#moves{
/* copied from inspect element */
font-size: 1.3em;
margin-block-start: 0.3em;
margin-block-end: 0.3em;
margin-inline-start: 0px;
margin-inline-end: 0px;
font-weight: bold
}
#Timer{
/* copied from inspect element */
font-size: 1.3em;
margin-block-start: 0.3em;
margin-block-end: 0.3em;
margin-inline-start: 0px;
margin-inline-end: 0px;
font-weight: bold
}
#hiscore{
/* copied from inspect element */
font-size: 1.3em;
margin-block-start: 0.3em;
margin-block-end: 0.3em;
margin-inline-start: 0px;
margin-inline-end: 0px;
font-weight: bold
}
#besttime{/* copied from inspect element */
font-size: 1.3em;
margin-block-start: 0.3em;
margin-block-end: 0.3em;
margin-inline-start: 0px;
margin-inline-end: 0px;
font-weight: bold
}
@media only screen and (max-width: 600px) {
.big {
flex-direction: column;
}
}