-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDBStylesheet.css
More file actions
54 lines (51 loc) · 846 Bytes
/
DBStylesheet.css
File metadata and controls
54 lines (51 loc) · 846 Bytes
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
* {
font-family: Palatino !important;
}
/* Navigation Bar */
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
/* Button styling */
li {
float: left;
width: 16.6%;
font-size: 2.9vw;
text-align: center;
overflow: auto;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
/* Hover color */
li a:hover {
background-color: #111;
}
/* Indicates what page the user is on,
to use just say class="active" in the <a>
element*/
.active {
background-color: grey;
}
/* Changing the font family */
.row {
display: flex;
flex-wrap: wrap;
padding: 0 20 px;
}
/* Create two equal columns that sits next to each other */
.column {
flex: 50%;
padding: 0 20 px;
}
.column img {
margin-top: 8px;
vertical-align: middle;
}