-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
147 lines (133 loc) · 2.58 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
/**
* Main Styles
*/
html {
background: radial-gradient(black 15%, transparent 16%) 0 0,
radial-gradient(black 15%, transparent 16%) 8px 8px,
radial-gradient(rgba(255, 255, 255, 0.1) 15%, transparent 20%) 0 1px,
radial-gradient(rgba(255, 255, 255, 0.1) 15%, transparent 20%) 8px 9px;
background-color: #282828;
background-size: 16px 16px;
height: 100%;
}
body {
position: relative;
height: 100%;
margin: 0px;
font: 12px/18px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
background-image: radial-gradient(50% 50%, transparent, black);
}
/**
* Design Styles
*/
header {
position: absolute;
box-sizing: border-box;
top: 0;
left: 0;
width: 100%;
height: 34px;
margin: 0;
z-index: 1;
box-shadow: 0 5px rgba(0, 0, 0, 0.8);
background: rgba(20, 20, 20, 0.8);
border-left: 8px solid #900;
transition: all 0.5s;
}
header:hover {
height: 80px;
}
iframe {
width: 100%;
height: 100%;
border: none;
margin-bottom: -5px;
}
/**
* Header Styles
*/
header h1 {
display: inline-block;
margin: 0;
padding: 8px;
font-family: Georgia, Times, "Times New Roman", serif;
color: white;
font-size: 18px;
font-weight: normal;
text-transform: capitalize;
}
header p {
display: inline-block;
margin: 0;
color: #999;
font-size: 1em;
font-style: italic;
transition: opacity 0.5s;
}
#select {
position: relative;
left: -115px;
opacity: 0;
}
header:hover #expand {
opacity: 0;
}
header:hover #select {
opacity: 1;
}
/**
* Nav Menu Styles
*/
#nav {
list-style: none;
margin: 5px;
}
#nav li {
display: inline-block;
}
#nav a {
position: relative;
margin: 2px 3px;
padding: 6px 12px 5px;
font-family: Georgia, Times, "Times New Roman", serif;
text-transform: uppercase;
text-decoration: none;
font-weight: 800;
font-size: 10px;
letter-spacing: 1px;
line-height: 18px;
color: #BBB;
opacity: 0;
transition: opacity 0.5s;
}
header:hover #nav a {
opacity: 1;
}
#nav a:hover {
color: white;
}
#nav a::after {
content: "//";
position: absolute;
top: 1px;
right: -8px;
width: 10px;
height: 20px;
font-size: 18px;
letter-spacing: -4px;
color: #646464;
}
#nav li:first-child a::before {
content: "//";
position: absolute;
top: 1px;
left: -8px;
width: 10px;
height: 20px;
font-size: 18px;
letter-spacing: -4px;
color: #646464;
}
#nav li a.selected {
color: white;
}