-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
140 lines (120 loc) · 1.92 KB
/
style.css
File metadata and controls
140 lines (120 loc) · 1.92 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
html {
box-sizing: border-box;
background:#eeeeee;
font-family:'helvetica';
font-size: 20px;
font-weight: 200;
}
body {
margin: 0;
}
.content {
transition: transform 1s;
position: absolute;
width: 100%;
}
.content.off-left {
transform: translateX(-2000px);
}
.site-wrap {
max-width: 1000px;
margin: 10px auto;
background:white;
padding:40px;
box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05);
transform: scale(0.98);
display: flex;
}
.intro {
max-width: 1000px;
margin: auto;
transform: scale(0.98);
}
.blurb {
flex: 1.7;
}
.screenshot {
flex: 1;
padding: 20px;
}
.screenshot img {
max-width: 100%;
max-height: 300px;
margin: 0 auto;
display: block;
border: 1px lightgray solid;
padding: 2px;
}
header {
text-align: center;
height:30vh;
background:url(images/background.png) center no-repeat;
background-size:cover;
display:flex;
align-items:center;
justify-content: center;
}
h1 {
color: white;
font-size: 12vh;
text-shadow: 3px 4px 0 rgba(0,0,0,0.4)
}
p, li {
line-height: 1.2em;
font-size: large;
}
.sub-header {
text-transform: uppercase;
margin: auto;
}
.sub-header h2 {
text-align: center;
color: black;
text-shadow: 2px 3px 0 rgba(0,0,0,0.1);
width: 100%;
font-size: 2.5em;
margin: 25px 0 15px 0;
}
nav {
background:black;
top:0;
width: 100%;
transition:all 0.5s;
position: relative;
z-index: 1;
}
body.fixed-nav nav {
position: fixed;
box-shadow:0 5px 0 rgba(0,0,0,0.1);
}
nav ul {
margin: 0;
padding:0;
list-style: none;
display:flex;
}
nav li {
flex:1;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
}
nav a {
text-decoration: none;
padding:20px;
display: inline-block;
color:white;
transition:all 0.2s;
text-transform: uppercase;
}
nav a.active {
color: rgb(146,172,198);
}
.employment {
position: fixed;
left: 250px;
}
code, pre {
font-size: medium;
}