-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
123 lines (103 loc) · 1.9 KB
/
Copy pathstyle.css
File metadata and controls
123 lines (103 loc) · 1.9 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
:root {
--sidebar-width: 200px;
--navbar-height: 43px;
--color1: #ffffff;
--color2: #eeeded;
--color3: #cfcdcd;
}
#logo {float: left; margin-right: 30px;}
#myAccountImage {
height: 20px;
margin-top: 10px;
margin-right: 10px;
}
#toggleAccountInfo, #toggleLoginInfo {
display: none;
}
#toggleAccountInfo {
position: fixed;
top: 45px;
right: 10px;
padding: 20px;
border-radius: 10px;
background-color: var(--color3);
color: var(--color2);
}
#toggleAccountInfo a {
background-color: var(--color1);
padding: 10px;
border-radius: 5px;
}
form#logout {
max-height: 30px;
margin: 0px;
}
#registrationForm {
margin-bottom: 300px;
}
#loginStatus, #username, #myAccountImage, #logoutDiv, #loginPrompt, #toggleLoginInfo, #LoginInfo {
float: right;
}
#sidebar {
margin-top: 20px;
margin-bottom: 20px;
float: left;
text-align: center;
max-width: var(--sidebar-width);
}
.sidebar_item {
margin-top: 0px;
margin-bottom: 40px;
}
.HSidebarSiteImg {
max-height: 25px;
}
#footer {
margin-top: 100px;
margin-bottom: 100px;
margin-right: 150px;
margin-left: var(--sidebar-width);
}
#main {
margin-top: 100px;
margin-bottom: 100px;
margin-right: 150px;
}
.w3-main {
margin-left: var(--sidebar-width);
margin-top: var(--navbar-height);
}
.w3-sidebar {
width: var(--sidebar-width);
}
ul.menubar {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
}
li.menubar {float: left;}
table.footer {
width: 100%;
float: bottom;
}
a.footer_item:link, a.footer_item:visited {
display: block;
text-align: center;
padding: 4px;
text-decoration: none;
}
.rbac_table, .rbac_table th, .rbac_table td {
padding: 3px;
border: 1px solid black;
border-collapse: collapse;
}
.rbac_table tr:nth-child(even) {
background-color: #DDDDDD;
}
.rbac_table th {
background-color: #DDDDDD;
}
img.button {
max-height: 25px;
}