-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresult.css
More file actions
133 lines (107 loc) · 1.89 KB
/
result.css
File metadata and controls
133 lines (107 loc) · 1.89 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
body {
margin: 0;
}
#output {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size:1em;
color: #333;
}
.row-container:nth-child(even) {background: #FBFBFB}
.row-container:nth-child(odd) {background: #FEFEFE}
.row-container {
padding-top: 1em;
padding-bottom: 1em;
}
.row {
width: 1024px;
margin-right: auto;
margin-left: auto;
overflow: hidden;
}
/* COLUMN SETUP */
.col {
display: block;
float:left;
margin: 1% 0 1% 2%;
}
.col:first-child { margin-left: 0; }
/* GRID OF THREE */
.span_3_of_3 { width: 100%; }
.span_2_of_3 { width: 66%; }
.span_1_of_3 { width: 32%; }
.title {
margin-top: 0.5em;
margin-bottom: 0.5em;
}
.imagebox {
width: 100%;
margin-top: 1em;
margin-bottom: 1em;
}
.imagebox img{
display: block;
margin: 0 auto;
max-width:100%;
max-height: 768px;
}
p {
margin: 2px;
padding: 0px;
}
.results {
clear: both;
padding: 0px;
margin: 0px;
}
.result h1 {
font-size: 1em;
text-align: left;
font-weight:500;
margin: 0 0 1em 0;
padding-bottom: 0.75em;
border-bottom: 2px solid #BBB;
}
.result h2 {
text-align: left;
font-weight: 400;
font-size: 1em;
font-weight: normal;
margin: 0 0 0.5em 0;
}
.result > ul, .result > div {
margin-top: 0;
margin-bottom: 1em;
/* margin-left: 2em;
*/ font-weight: 300;
color: #333;
}
.result ul {
padding: 0;
}
.result li {
list-style: none;
padding-bottom: 0.33em;
}
.colorblock {
display: inline-block;
font-size:0.8em;
width:46.81px;
height:35.10px;
text-align: center;
}
.colorblock > span {
vertical-align: middle;
line-height: 35.10px;
}
@media only screen and (max-width: 1024px) {
.row { width: calc(100% - 40px);
padding-left: 20px;
padding-right: 20px;}
}
@media only screen and (max-width: 480px) {
.row { width: calc(100% - 40px);
padding-left: 20px;
padding-right: 20px;}
.col { margin: 1% 0 1% 0% ; }
.span_3_of_3, .span_2_of_3, .span_1_of_3 { width: 100%; }
}