-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
107 lines (89 loc) · 2 KB
/
Copy pathstyle.css
File metadata and controls
107 lines (89 loc) · 2 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
104
105
106
107
html, body {
height: 100%;
}
body {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
font-family: 'Poppins', sans-serif;
margin: 0;
/* background-image: url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQUBESGyaOWQJlmR8RVYDGX5yHD1Bo7HoioNw&usqp=CAU"); */
background-image: url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQdE1zwHJbdgoN4Th6GNyavxvKQqh4ZVjUkvg&usqp=CAU");
background-size: cover;
background-position: center;
}
h1 {
font-size: 36px;
margin: 5px;
}
#board {
width: 290px;
border: 2px solid black;
padding: 10px;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
background-color: rgb(59, 59, 161);
transition: background-color 400ms;
margin: 4px;
}
#board.correct {
background-color: lightseagreen;
}
#board.initial {
pointer-events: none;
}
#board li {
width: 80px;
height: 80px;
border: 2px solid black;
margin: 6px;
list-style: none;
border-radius: 6px;
background-color: oldlace;
cursor: pointer;
box-shadow: 10px 10px 10px -10px;
}
#board li.open {
pointer-events: none;
}
#board li.correct {
pointer-events: none;
}
#start {
margin: 10px;
width: 200px;
height: 40px;
font-size: 25px;
font-weight: bold;
font-family: 'Poppins', sans-serif;
background-color: mediumseagreen;
outline: none;
cursor: pointer;
border-radius: 6px;
box-shadow: 20px 10px 20px -15px;
border: none;
}
#start:active {
cursor: grab;
transform: scale(0.9);
}
span {
width: 315px;
display: flex;
justify-content: space-between;
user-select: none;
/* border: 1px solid black; */
margin: 0;
}
timers {
display: flex;
justify-content: center;
flex-direction: row;
align-items: center;
font-size: 20px;
font-weight: bold;
/* user-select: none; */
}