-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcbr_layouts.css
More file actions
91 lines (75 loc) · 1.29 KB
/
cbr_layouts.css
File metadata and controls
91 lines (75 loc) · 1.29 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
@charset "utf-8";
/*
Chicago Bear Rescue Stylesheet
*/
body {
display: -webkit-flex;
display: flex;
-webkit-flex-flow: row wrap;
flex-flow: row wrap;
width: 100%;
height: 100%;
}
.horizontal {
width: 100%;
color: whitesmoke;
text-align: center;
flex-wrap: wrap;
}
.menu {
width: 100%;
margin-bottom: 0;
border-radius: 0;
}
.navbar-header {
display: none;
}
.menu-item {
float: left;
width: 20%;
list-style-type: none;
height: 100%;
}
.nav, .navbar-header, .menu {
background-color: #474b24ff;
}
div.row {
clear: both;
}
div.row::after {
clear: both;
content: "";
display: table;
}
.contact-info {
flex-wrap: wrap;
}
div[class^="col-"] {
float: left;
}
div.col-1-1 {width: 100%;}
div.col-1-2 {width: 20%;}
div.col-1-6 {width: 60%;}
div.col-1-8 {width: 80%;}
div#takoda {
margin: auto;
width: 50%;
}
/* Set height of the grid so .sidenav can be 100% (adjust as needed) */
.row.content {height: 450px}
/* Set gray background color and 100% height */
.sidenav {
background-color: #aca08d;
line-height: 100%;
height: auto;
width: auto;
}
/* On small screens, set height to 'auto' for sidenav and grid */
@media screen and (max-width: 767px) {
.sidenav {
height: 100%;
width: auto;
padding: 15px;
}
.row.content {height:auto;}
}