-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyles.css
76 lines (70 loc) · 1.73 KB
/
styles.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
html, body {
margin: 0;
padding: 0;
font-family: "helvetica neue", "HelveticaNeue", "Helvetica", "Arial", sans-serif;
background: rgba(0, 0, 0, 0.2); overflow: hidden; }
input {
background: none;
border: 0;
color: #fff;
padding: 0.6em;
margin: 0;
width: 247px;
}
::-webkit-input-placeholder {
color: #fff;
}
:-moz-placeholder {
color: #fff;
}
#tools { position: absolute; top: 0; left: 0; height: 30px; width: 100%; background: #333; }
#tools h1 { color: #fff; font-size: 16px; line-height: 30px; display: inline; margin-right: 5px; font-weight: normal; text-transform: uppercase; padding-left: 10px; letter-spacing: 1px; }
#tools p { font-size: 13px; color: #808080; line-height: 30px; display: inline; }
.nav {
font-size: 14px;
background: black;
color: #fff;
clear: both;
z-index: 1;
margin: 0;
list-style: none;
position: fixed;
top: 0;
right: 0;
padding: 0;
border: 0; }
.nav li {
float: left;
border-bottom: 0;
border-left: 1px solid #808080;
list-style: none; }
.nav li:first-child {
border-left: 0; }
.nav a {
color: #808080;
text-decoration: none;
display: block;
line-height: 1;
padding: 0 0.6em;
height:30px; line-height: 30px; }
.nav a:hover, .nav a:focus, .nav a.active {
color: #fff;
background: rgba(255, 255, 255, 0.3); }
/* Viewport */
#vp-wrap {
text-align: center;
height: 100%;
position: absolute;
top: 30px;
bottom: 0;
width: 100%; }
#viewport {
-webkit-transition: width 0.8s ease-out;
-moz-transition: width 0.8s ease-out;
-ms-transition: width 0.8s ease-out;
-o-transition: width 0.8s ease-out;
transition: width 0.8s ease-out;
width: 100%;
border: 0;
margin: 0 auto;
height: 94%; }