-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlt-booking.css
163 lines (135 loc) · 2.22 KB
/
lt-booking.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
/*
#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;
}
.lt-main{
margin-top: 65px;
text-align: center;
margin-bottom: 65px;
}
.info-bar{
background: #29648A;
/border-right: 2px solid black;
padding: 20px;
align-items: center;
/margin-bottom: 65px;
}
/*form .form-row{
padding: 10px;
}*/
.form-group{
margin: 0 auto;
}
.list-group{
margin: 0 auto;
}
.lt-btn {
background-color: white;
border: 2px solid black;
border-radius: 5px;
margin: 20px;
width: 120px;
height: 120px;
}
.lt-btn:hover {
background-color: lightgray;
}
.lt-btn:focus {
background-color: lightseagreen;
}
.footer{
background-color: black;
color: white;
}
#scroll-top{
display: none;
}
/** Sidebar********************************************************************** */
.sidebar {
margin: 0;
padding: 0;
width: 200px;
background-color: #AAABB8;
position: fixed;
height: 100%;
overflow: auto;
}
.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;}
}
.info{
/padding: 20px;
margin: 50px;
border-color: #2E9CCA;
}
.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;
}
#hidden{
display: none;
margin-bottom: 20px;
}