-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathben.css
More file actions
109 lines (82 loc) · 1.49 KB
/
Copy pathben.css
File metadata and controls
109 lines (82 loc) · 1.49 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
/* -------- Layout Setup -------- */
body {
font-family:'Helvetica', 'Arial', 'Sans-Serif';
background-color: #3C412B;
color:#fff;
padding:0px;
margin:0px;
font-size:125%;
}
nav{
font-size:1.2rem;
padding:0% 5%;
margin:0;
box-sizing: border-box;
}
#headline{
width:100%;
height:auto;
padding:0% 5%;
margin:0;
box-sizing: border-box;
}
#container{
width:100%;
min-height:350px;
padding:3em 5% 2em 5%;
margin:0;
background:#CFE7B0;
color: #7D8172;
box-sizing: border-box;
}
#squeeze{
max-width:680px;
}
footer {
position:relative;
bottom:0px;
padding:0% 5%;
margin:0;
background-color:#266672;
color:#fff;
clear:both;
width:100%;
height:6rem;
box-sizing: border-box;
}
/* -------- Media Queries -------- */
/* default design assumes mobile. */
@media (min-width: 500px) /* more than 500px wide */
{
nav ul li{display:inline !important;}
body{font-size:100%;}
nav,#headline,footer{padding:0% 25%;}
#container{padding:1.5rem 25%;}
}
@media (min-width: 500px) {
}
@media (min-width: 1150px) {
}
/* -------- Type Styles -------- */
nav, nav a{
color:#fff;
}
nav ul, footer ul {
padding: 0px;
list-style: none;
font-weight: bold;
}
nav ul li, footer ul li {
display: block;
margin-right: 20px;
}
a {
text-decoration: none;
color: #fff;
}
a:hover {
text-decoration: underline;
}
#container a{
color: #7D8172;
}