-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
182 lines (149 loc) · 3.51 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
/* --- GENERAL RULES --- */
body{
background-color:#222222; /* Palate DL */
padding: 40px;
min-width:950px;
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
/*font-family: Helvetica, Verdana, Arial, sans-serif;*/
color:#ffffff;
}
a{
color:#2EA2CC; /* Palate LL */
display:inline-block;
text-decoration:none;
}
a:hover{
color:#FFFFFF; /* Palate TXT */
/* Was once #FFFFFF for some reason*/
}
/* Reminder: 2 link colors are swapped for nav_container*/
/* --- SEGMENT RULES --- */
#header{
background-image: url("images/banner.jpg");
background-repeat: no-repeat;
background-position: center;
background-color:#111111; /* Palate DD */
text-align: center;
height: 167px;
display: table;
width: 100%;
}
#name{
display: table-cell;
text-align: center;
vertical-align: middle;
font-size: 5em;
letter-spacing: 20px;
padding-left: 20px;
font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
#nav {
background-color: #003060; /* Palate LD */
margin:0;
padding:0 0 0 40px;
height: 56px;
}
#nav_container{
height: 56px;
display: table-cell;
vertical-align: middle;
list-style-type:none;
margin:0;
padding:0;
}
#nav_container a {
color:#FFFFFF; /* Palate TXT (Instead of LL) */
padding:0 10px 0 0;
margin:0;
}
#nav_container a:hover {
color:#2EA2CC; /* Palate LL (Instead of TXT) */
}
#nav_container li{
display:inline-block;
padding:0;
margin:0;
}
#main_content{
background-color:#111111; /* Palate DD */
}
.right_column
{
float:right;
/*font-size:0.75em;*/
text-align: right;
width:170px;
padding:20px;
padding-top:30px;
padding-right:40px;
margin-bottom:-20px;
}
/* Not strictly necessary but spaces them nicely */
.right_column a{
/*padding:5px;*/
padding:0px;
padding-bottom:10px;
}
.left_column
{
min-height:380px;
margin-right:260px;
padding:20px;
padding-left:40px;
padding-right:0px;
}
.left_column ul{
padding-top:0px;
margin-top:0px;
}
footer{
background-color:#111111; /* Palate DD */
padding:10px;
text-align: center;
font-size:0.75em;
}
/* --- INFREQUENT RULES --- */
/* These rules were created for specific pages,
but were added to the overall stylesheet for
their overall usefulness for the site */
/* Created for resume, but a very handy rule to have */
.right{
float:right;
}
/* Used in Valkyrie, Compiler, Resume -
However, since it redefines inherent h3 values,
Might be a good rule to rework or repurpose in the future */
h3 {font-style:italic;
font-variant:small-caps;}
/* Used in Compiler, but useful if a textarea is needed in the future */
textarea {
color:#FFFFFF; /* Palate TXT; font rules don't carry over from body for textarea */
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
border: 2px solid #555555;/* A Lighter Gray */
background-color:#333333; /* A Darker Gray that's ligher than DL */
}
/* --- COLOR PALATE INFORMATION ---
DD: Dark Color - Dark (Body Background)
D2: Dark Color - Light (Main Content Background)
LD: Light Color - Dark (Navigation Bar)
LL: Light Color - Light (Links)
TXT: Text; Usually just white
Original Palate:
DD: #000000
DL: #111111
LD: #000033
LL: #195884
TXT: #FFFFFF
Sample Palate:
DD: #222222
DL: #333333
LD: #0074A2
LL: #2EA2CC
TXT: #FFFFFF
Current Palate:
DD: #111111
DL: #222222
LD: #005280
LL: #0C80AA
TXT: #FFFFFF
*/