Blame view
app/styles/main.css
886 Bytes
|
c87bc1f33
|
1 2 |
/* Space out content a bit */
body {
|
|
c87bc1f33
|
3 |
|
|
c87bc1f33
|
4 |
} |
|
8f087d204
|
5 6 7 |
#tship-container{
border-left: 1px solid #dcdcdc;
border-right: 1px solid #dcdcdc;
|
|
c87bc1f33
|
8 |
} |
|
8f087d204
|
9 10 11 |
/*HEADER*/
header{
border-bottom: 1px solid #dcdcdc;
|
|
c87bc1f33
|
12 |
} |
|
8f087d204
|
13 14 15 16 17 |
header .logo{
color: #ed1d24;
font-size: 30px;
text-transform: uppercase;
font-weight: bold;
|
|
c87bc1f33
|
18 |
} |
|
8f087d204
|
19 20 |
header .logo img{
width: 60px;
|
|
c87bc1f33
|
21 |
} |
|
8f087d204
|
22 23 24 |
/*NAVIGATION*/
nav{
border-bottom: 1px solid #dcdcdc;
|
|
c87bc1f33
|
25 |
} |
|
8f087d204
|
26 27 |
nav h2{
font-size: 24px;
|
|
c87bc1f33
|
28 |
} |
|
8f087d204
|
29 30 31 |
nav ul{
list-style: none;
padding-left: 0;
|
|
c87bc1f33
|
32 |
} |
|
8f087d204
|
33 34 35 36 37 |
nav ul li{
margin-left: 2px;
float: left;
padding: 6px 12px;
background-color: #999999;
|
|
c87bc1f33
|
38 |
} |
|
8f087d204
|
39 40 41 42 43 44 45 46 47 48 49 50 |
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;*/
}
|
|
c87bc1f33
|
51 52 53 54 55 |
}
/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
/* Remove the padding we set earlier */
|
|
8f087d204
|
56 |
|
|
c87bc1f33
|
57 |
} |