-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
65 lines (56 loc) · 1021 Bytes
/
Copy pathstyle.css
File metadata and controls
65 lines (56 loc) · 1021 Bytes
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
html {
height: 100%;
width: 100%;
}
body {
height: 100%;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
margin: 0;
background-color: lightcoral
}
.header {
display: flex;
justify-content: center;
background-color : red;
width: 100%;
border : solid rgb(122, 0, 0) 4px;
text-align: center;
font-size: 250%;
color: white;
font-weight: bolder;
}
.buttonsList {
display: flex;
justify-content: center;
}
.instructions, #message, .buttonsList>button {
background-color : red;
border : solid rgb(122, 0, 0) 4px;
text-align: center;
margin-top: 1%;
font-size: 150%;
width: 50%;
color: white;
font-weight: bolder;
}
.buttonsList>.selected {
background-color : rgb(150, 0, 0);
}
.cps {
margin-top: 1%;
width: 50%;
height: 50%;
font-size: 500%;
}
button:not(.noleft):not(.cps) {
margin-left: 1px;
}
.hide {
display: none;
}
#restart {
margin-top: 5px;
}