-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
100 lines (100 loc) · 1.74 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
93
94
95
96
97
98
99
100
html {
font-family: 'Courier New', Courier, monospace;
height: 100%;
width: 100%;
background: rgb(0,0,0);
background: linear-gradient(90deg, rgb(20,61,171) 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgb(51,198,69) 100%);
}
body {
height: 100%;
width: 100%;
margin: 0;
}
body > div {
width: 90%;
margin: auto;
}
#header {
height: 100px;
}
#main {
height: calc(100% - 100px - 50px);
}
#footer {
height: 50px;
font-size: 10px;
line-height: 50px;
color: rgb(100,33,146);
text-align: center;
}
.nah {
visibility: hidden;
}
.exit {
float: right;
}
.midIcon {
border: 2px solid transparent;
box-sizing: border-box;
font-size: 30px;
}
.midIcon:hover {
background-color: rgba(255,255,255,0.3);
cursor: pointer;
}
.bigIcon {
font-size: 40px;
}
.bigIcon:hover {
font-size: 45px;
background-color: rgba(255,255,255,0.3);
cursor: pointer;
}
.bold-text {
font-weight: bold;
}
/* 2+ lvl */
#menu-top {
width: 100%;
height: 100%;
line-height: 100px;
font-size: 40px;
text-align: center;
}
#listView {
width: 90%;
margin: auto;
height: 100%;
background-color: rgb(252,246,144);
}
#listItems {
width: 80%;
margin: auto;
height: 65px;
text-align: center;
padding-top: 5px;
border-style: none none double none;
border-width: 10px;
border-color: rgb(212,159,119);
}
#listItems span {
display: inline-block;
width: 60px;
height: 60px;
}
.selected-item {
border: 2px solid black !important;
background-color: rgb(212,159,119);
}
/* 3+ lvl */
#info {
width: 50%;
min-height: 100px;
margin: auto;
padding-top: 5px;
}
#info > div {
width: 80%;
margin: auto;
text-align: center;
}