-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
214 lines (180 loc) · 3.88 KB
/
Copy pathstyles.css
File metadata and controls
214 lines (180 loc) · 3.88 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
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
/************************************************************************
* NAME: styles.css *
* AUTHOR: Kevin Cole <kevin.cole@gallaudet.edu> *
* WHERE: NOVA Web Development *
* LASTMOD: 2014.06.05 *
* PURPOSE: This is the cascading style sheet (CSS) for the NOVA Web *
* Development website. It is evolving from gri.css, used for *
* many years by the Gallaudet Research Institute. *
* *
* Copyright (c) 2014 Kevin Cole <kevin.cole@gallaudet.edu> *
************************************************************************/
@page {
size: 8.5in 11in;
}
body {
background-color: #ADBAE7;
color: #000000;
font-family: Verdana,Arial,Helvetica,sans-serif;
margin: 0;
/* position: static; */
width: 100%;
/* height: auto; */
}
/* WAS 1c577f will be #2477AA */
header {
background: none repeat scroll 0 0 #0005b3;
box-shadow: 14px 0 25px 11px rgba(0, 43, 70, 0.64);
margin: 1% 1% 4%;
/* position: static; */
width: 98%;
border-radius: 50px 50px 50px 50px;
}
#logo{
margin-left: 5%;
margin-top: 2%;
width: 17%;
margin-bottom: 2%;
}
nav {
float: right;
margin-top: 3%;
/* position: static; */
margin-right: 5%;
}
nav ul {
color: rgb(255, 255, 255);
padding: 0;
}
nav ul li {
list-style-type: none;
display: inline;
width: 2vw;
}
nav ul li a {
border-color: white turquoise;
border-radius: 1px;
border-style: solid;
border-width: medium thick;
color: #ffffff;
font-size: 1.3vw;
padding: 3px 19px;
text-align: center;
text-decoration: none;
}
.handle {
width: 100%;
text-align: right;
box-sizing: border-box;
display: none;
color: #ffffff;
}
#icon {
float: right;
width: 7%;
/* position: relative; */
box-sizing: border-box;
margin-top: -9.5%;
margin-right: 3%;
}
article {
background-color: #ffffff;
border-radius: 15px;
clear: both;
color: #548ccd;
margin: auto;
min-height: 400px;
padding: 10px;
/* position: relative; */
top: 9px;
width: 85%;
box-shadow: 8px 0 16px 8px rgba(0, 43, 70, 0.36);
}
.columns {
/* position: static; */
display: table-cell;
font-size: 1.8vw;
}
h2 {
font-size: 0.9em;
font-weight: bold;
text-align: center;
color: #222222;
margin-left: -3px;
margin-top: 33px;
}
footer {
background-color: #6D8AEC;
/* position: static; */
width: 100%;
margin: 16% auto auto;
/* height: auto; */
}
footer #social {
width: 300px;
margin: auto;
}
footer img {
border: 0 none;
height: 90px;
margin: 15px auto;
width: 90px;
}
footer #legal {
font-size: 10pt;
margin: 5px auto;
text-align: center;
}
/***********************************************************************/
.main img {
width: 100%;
}
p {
margin: 1.2em 1em;
font-family: Verdana,Arial,Helvetica,sans-serif;
font-size: 13px;
line-height: 2.125;
color: #222222;
}
h1 {
color: #ffff7f;
margin: 1em 1em 1.2em;
}
/*Profile CSS*/
.profile {
display: inline-block;
margin-top: 2%;
}
.pro-image {
padding-right: 10px;
float: left;
}
@media screen and (min-width : 300px) and (max-width: 800px) {
.columns {
width: 100%;
display: block;
}
h2 {
font-size: 2em;
}
nav {
display: none;
}
nav ul li:hover {
background: #0066FF;
color: white;
}
nav ul li a {
width: 100%;
box-sizing: border-box;
padding : 15px;
text-align: left;
border: none;
margin-left: 0;
font-size: 5.7vw;
}
.handle {
display: block;
cursor: pointer;
}
}