-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomplaint.css
128 lines (106 loc) · 1.8 KB
/
complaint.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
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
/*
#AAABB8
#464866 light blue
#25274D dark blue
#2E9CCA light green
#29648A
*/
*{
margin: 0;
padding: 0;
}
body{
overflow-x: hidden;
}
nav{
background-color: #25274D;
font-family: "Noto Serif SC", serif;
}
.navbar-brand img {
height: 40px;
width: auto;
}
.dropdown button{
background-color: #2E9CCA;
}
.dropdown-item img{
height: 40px;
width: 40px;
}
.comp-main{
margin-top: 65px;
font-family: "Noto Serif SC", serif;
margin-bottom: 65px;
}
.buttons{
text-align: center;
padding: 10px;
}
footer{
background-color: black;
color: white;
}
.info{
padding: 20px;
margin: 50px;
border-color: #2E9CCA;
}
#scroll-top{
display: none;
}
/** Sidebar********************************************************************** */
.sidebar {
margin: 0;
padding: 0;
width: 200px;
background-color: #AAABB8;
position: fixed;
height: 100%;
overflow: auto;
font-family: "Noto Serif SC", serif;
}
.sidebar a {
display: block;
color: black;
padding: 16px;
text-decoration: none;
}
.sidebar a.active {
background-color: #29648A;
color: white;
}
.sidebar a:hover:not(.active) {
background-color: #2E9CCA;
color: white;
}
div.content {
margin-left: 200px;
padding: 1px 16px;
height: auto;
}
@media screen and (max-width: 700px) {
.sidebar a {
text-align: center;
float: none;
}
.sidebar {
width: 100%;
height: auto;
position: relative;
margin-top: 65px;
}
div.content {margin-left: 0;}
.comp-main{
margin-top: 10px;}
}
.header{
font-family: "Permanent Marker";
margin-bottom: 10px;
color: #2E9CCA;
text-shadow: 2px 0 0 black, -2px 0 0 black, 0 2px 0 black, 0 -2px 0 black, 1px 1px black, -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black;
}
.info h3{
text-decoration: underline;
margin-bottom: 20px;
font-weight: bold;
}