-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
129 lines (124 loc) · 2.09 KB
/
stylesheet.css
File metadata and controls
129 lines (124 loc) · 2.09 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/* Main Primary color */
/* Main Complement color */
/* Main Primary color */
/* Main Complement color */
body {
background-color: #0A2435;
}
.content {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
#sidebar {
width: 15%;
background-color: #333;
float: left;
height: 100%;
}
#sidebar a {
width: 100%;
height: 20%;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 0px;
background-color: #2F688D;
box-shadow: inset 0px 0px 10px 0px rgba(106,184,235,1) !important;
}
#sidebar a:hover {
box-shadow: 5px 0px 5px 0px rgba(106, 184, 235, 0.5) !important;
background-color: #6AB8EB;
}
.main {
display: table;
width: 85%;
background-color: #0A2435;
float: right;
height: 100%;
color: white;
margin-left: auto;
margin-right: auto;
text-align: center;
}
.main img {
width: 35%;
}
.main a {
width: 40%;
margin-right: 15px;
}
.main-content {
display: table-cell;
vertical-align: middle;
}
.fixed-content {
position: absolute;
top: 0%;
bottom: 10%;
right: 0%;
left: 20%;
height: 90%;
padding-left: 5%;
padding-right: 5%;
padding-bottom: 2%;
text-align: center;
overflow-x: hidden;
overflow-y: scroll;
}
.main-content p {
font-size: 2vw;
}
.main-content select {
display: inline-block;
width: 80%;
color: black;
background-color: white;
border-color: white;
}
.footer {
position: absolute;
display: block;
bottom: 0;
margin-left: auto;
margin-right: auto;
text-align: center;
width: 85%;
height: 10%;
background-color: #333;
font-size: 1vw;
line-height: 1.0;
}
.bdiv i {
margin-top: 50%;
vertical-align: middle;
font-size: 4vw;
}
.bdiv p {
font-size: 2vh;
}
table.highlight > tbody > tr:hover {
background-color: #2F688D;
}
.bindingRow input {
width: 80%;
text-align: center;
padding-top: 0%;
padding-bottom: 0%;
margin: 0 0 0px 0;
}
.arrangeList {
max-height: 5%;
overflow: hidden;
display: inline-flex;
}
.arrangeList li {
display: inline-block;
width: 20%;
height: 10%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}