-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
92 lines (77 loc) · 1.37 KB
/
style.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
body{
font-family: Arial, serif;
color: #11dd55;
margin-left: 100px;
margin-right: 100px;
background: #222;
}
header,footer{
background-color: #000;
}
h1{
color: #11dd55;
}
#tg_text{
padding-left: 37px;
}
#levels{
text-align: center;
border-radius: 12px;
margin-left: 20%;
margin-right: 20%;
display: flex;
flex-direction: column;
background: #303030;
}
.level_button{
justify-content: center;
font-size: 24px;
color: #0022aa;
border-radius: 12px;
border: none;
padding: 10px 50px;
margin: 4px 50px;
}
.common-level{
background: linear-gradient(to bottom, #aaccff, #aaffcc);
}
.special-level{
background: linear-gradient(to bottom, #eeeeaa, #ffccaa);
}
progress{
width: 780px;
background: #cc3333; /* don't work somehow */
margin-bottom: 20px;
}
#effect_div{
display: flex;
flex-direction: column;
}
#game_board{
display: flex;
flex-direction: row;
}
#game_header{
display: flex;
flex-direction: row;
}
#game{
display: flex;
flex-direction: column;
}
#buttons{
display: flex;
flex-direction: column;
}
.menu_restart{
background: linear-gradient(to bottom, #225533, #444444);
padding: 5px;
margin: 20px 5px;
border-radius: 8px;
font-size: 24px;
color: #11dd55;
}
#buttons{
display: flex;
flex-direction: row;
}