-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
137 lines (113 loc) · 1.88 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
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
133
134
135
136
137
body {
margin: 0;
padding: 0;
background-color: #002D40;
font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
font-size: 14px;
line-height: 17px;
}
a {
color: #0066cc;
}
.message {
border: 1px solid #888;
background-color: #EEE;
padding-left: 10px;
padding-right: 10px;
padding-top: 5px;
padding-bottom: 5px;
}
.main {
background-color: #FFFFFF;
padding-top: 10px;
padding-left: 10px;
padding-right: 10px;
padding-bottom: 20px;
border: 1px solid #FF9132;
}
.float-left {
float: left;
}
.float-right {
float: right;
}
.clear-left {
clear: left;
}
.clear-right {
clear: right;
}
.align-right {
text-align: right;
}
.align-left {
text-align: left;
}
.header {
background-image: url('img/heart.png');
background-repeat: no-repeat;
padding-left: 44px;
}
.header h1.site-title {
color: #FF9132;
margin: 10px 0;
}
.find-your-match {
margin: 10px 0;
}
.find-your-match h3 {
font-size: 24px;
}
form ul.response-list {
list-style-type: none;
margin: 0;
padding: 0;
}
form ul.response-list li {
padding-top:2px;
padding-bottom: 2px;
}
form ul.response-list li input.radio,
form ul.response-list li input.checkbox {
margin-right: 10px;
}
body.home .candidates .candidate {
width: 285px;
margin-right: 15px;
border: 1px solid #EEEEEE;
}
body.home .candidates .candidate .avatar {
margin: 5px;
}
body.home .candidates .candidate h4 {
margin-top: 5px;
margin-bottom: 5px;
}
body.home .candidates .candidate .candidate-info {
min-height: 185px;
margin-left: 150px;
padding-left: 5px;
padding-right: 5px;
}
.main .get-started {
font-size: 28px;
}
.my-response {
text-decoration: underline;
}
.accepted-response {
color: #81af91;
}
ol.all-respondents {
margin-left: 20px;
}
.score {
background-color: #81AF91;
color: #000000;
font-size: 1.5em;
padding: 6px 3px;
}
.footer {
color: #FF9132;
margin: 10px 0;
}