-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstyle.css
executable file
·97 lines (76 loc) · 1.49 KB
/
style.css
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
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:400');
@import url('https://fonts.googleapis.com/css?family=Oswald');
body {
font-family: 'Roboto Condensed', sans-serif;
margin-left:2px;
margin-right:2px;
margin-top: 20px;
font-size: 20px;
line-height: 1.6
}
p {
line-height:1.5;
margin-top:10px;
margin-bottom:30px;
margin-left:0px;
margin-right:0px;
}
pre.r { border: 0;
margin-bottom: 40px;
margin-top: 40px;
}
pre {
font-size:16px;
margin-bottom:40px;
}
h1, h2, h3,h4 {
font-family: 'Oswald', sans-serif;
padding-bottom: 20px;
padding-top: 30px;
color: #4682b4;
}
.navbar-default {
background-color: #006699
}
.list-group-item.active {
z-index: 2;
color: #ffffff;
background-color: #006699;
border-color: #006699
}
blockquote { background-color: #f9f9f9; margin-bottom: 40px;}
/* SECTIONS */
.section {
clear: both;
padding: 0px;
margin: 0px;
}
/* COLUMN SETUP */
.col {
display: block;
float:left;
text-align: center;
margin: 1% 0 1% 1.6%;
}
.col:first-child { margin-left: 0; }
/* GROUPING */
.group:before,
.group:after { content:""; display:table; }
.group:after { clear:both;}
.group { zoom:1; /* For IE 6/7 */ }
/* GRID OF TWO */
.span_2_of_2 {
width: 100%;
}
.span_1_of_2 {
width: 49.2%;
}
/* GO FULL WIDTH AT LESS THAN 480 PIXELS */
@media only screen and (max-width: 480px) {
.col {
margin: 1% 0 1% 0%;
}
}
@media only screen and (max-width: 480px) {
.span_2_of_2, .span_1_of_2 { width: 100%; }
}