main.css
886 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
55
56
57
/* Space out content a bit */
body {
}
#tship-container{
border-left: 1px solid #dcdcdc;
border-right: 1px solid #dcdcdc;
}
/*HEADER*/
header{
border-bottom: 1px solid #dcdcdc;
}
header .logo{
color: #ed1d24;
font-size: 30px;
text-transform: uppercase;
font-weight: bold;
}
header .logo img{
width: 60px;
}
/*NAVIGATION*/
nav{
border-bottom: 1px solid #dcdcdc;
}
nav h2{
font-size: 24px;
}
nav ul{
list-style: none;
padding-left: 0;
}
nav ul li{
margin-left: 2px;
float: left;
padding: 6px 12px;
background-color: #999999;
}
nav ul li a{
color: #ffffff;
}
nav ul li.action{
color: #ffffff;
background-color: #ed1d24;
}
/* Customize container */
@media (min-width: 768px) {
.container {
/*max-width: 730px;*/
}
}
/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
/* Remove the padding we set earlier */
}