-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
189 lines (155 loc) · 3.05 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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
.header-row{
background-color: #005784;
}
.header-image {
margin-left: 20%;
margin-right: 20%;
margin-top: 3%;
margin-bottom: 3%;
}
.link-box {
width: 100%;
height: 352px;
padding: 10px;
text-align: center;
padding-top: 26px;
}
.home-box {
background-color: #00a7cb;
}
.games-box {
background-color: #005784;
}
#footer {
background-color: #f5f5f5;
text-align: center;
height: 100px;
margin-top: 20px;
padding-top: 10px;
}
#footer ul {
list-style-type: none;
margin: 0;
padding: 0;
vertical-align: top;
}
#footer ul li {
display: inline;
margin-right: 7px;
}
#footer ul li.last {
margin-right: 0;
}
.uoe-logo {
width: 10%;
float: left;
}
.footer-links {
width: 75%;
float: left;
margin-left: 20px;
}
.luc-logo {
width: 10%;
float: right;
margin-right: 15px;
margin-top: 8px;
}
ul.contributors {
list-style-type: none;
margin: 0;
padding: 0;
vertical-align: top;
width: 95%;
}
h3 {
color: #fe2842;
}
ul.contributors li h4 {
display: inline;
font-size: 20px;
color: #005784;
}
ul.contributors li p {
margin-top: 10px;
margin-bottom: 20px;
}
a.contributor-email {
font-size: 16px;
font-weight: bold;
margin: 0 10px;
}
a.contributor-twitter {
font-size: 16px;
font-weight: bold;
color: #000000;
}
/* Form styling */
label {
display: block;
padding: 1px 7px 0;
position: absolute;
top: 0;
z-index: 1;
}
input[type="text"], textarea {
display: block;
background: none;
font: inherit;
padding: 0 7px;
position: relative;
z-index: 10;
overflow: auto; /* removes scrollbar from textarea in IE - trick from HTML5 boilerplate*/
}
label, input[type="text"], #singleParagraphInputs div{
/* these two values must be the same */
line-height: 1.5em;
height: 1.5em;
}
#singleParagraphInputs div, #commentTxt, #recaptcha_widget_div{
margin-bottom: 1.5em;
}
input, textarea, #recaptcha_table{
border: 1px solid #ccc;
}
.formError {
border: 1px solid red;
}
#contactForm, #recaptcha_table{
width: 600px;
margin-left: 20px;
margin-top: 20px;
}
#singleParagraphInputs div, #commentTxt {
position: relative;
}
#singleParagraphInputs input {
width: 584px; /* 16px less than form width */
}
#commentTxt textarea {
min-height: 9em;
min-width: 584px; /* 16px less than form width */
/* if you aim ie7 users specify font to use in textarea since it won't inherit it*/
/*
font: 14px/1.5em sans-seif;
*/
}
#screenReader, #checking {
float: left;
display: none;
}
#recaptcha_response_field {
width: 286px !important; /* just a stylistic detail to make the input field equal width as the box with words to copy */
}
input[type="submit"]{
/* some styles for the button */
}
/* Lastly, apply responsive CSS fixes as necessary */
@media (max-width: 767px) {
#footer {
margin-left: -20px;
margin-right: -20px;
padding-left: 20px;
padding-right: 20px;
}
}