-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflex_style.css
126 lines (97 loc) · 1.86 KB
/
flex_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
* {
font-family: Helvetica Neue;
box-sizing: border-box;
font-size: 16px;
color: #4d4d4d;
}
body {
max-width: 1200px;
margin: auto;
padding: auto;
background-color: transparent;
}
/*Header and Nav Styles */
.header {
display: flex;
justify-content: flex-start;
margin-top: 2em;
margin-left: 0;
padding-top: 2em;
flex-wrap: wrap;
}
.header div {
align-items: center;
}
.job {
display: flex;
align-items: center;
/*border: solid;*/
flex-grow: 1;
padding-left: .8em;
}
.navigation {
display: flex;
/*border: solid;*/
justify-content: flex-end;
}
nav ul {
display: flex;
margin: 0;
padding-top: 2.3em;
padding-left: 1.2em;
/*border: solid;*/
width: 350px;
justify-content: space-between;
flex-wrap: wrap;
}
nav ul li {
display: inline;
text-decoration: none;
list-style-type: none;
}
nav ul li a:hover {
color: #b3d9ff;
border: solid #b3d9ff;
}
nav ul li a {
text-transform: lowercase;
text-decoration: none;
font-size: 1.3em;
letter-spacing: -.1em;
font-weight: bold;
color: #4d4d4d;
padding: .2em;
}
.title {
display: flex;
border-radius: 50%;
padding-right: 2em;
padding-left: .2em;
}
h1 {
font-size: 5em;
font-weight: 400;
letter-spacing: -.05em;
margin-left: 0;
margin-bottom: 0;
margin-top: 0;
padding:0;
color: #333;
}
h2.special {
font-size: 2em;
font-weight: 400;
margin: 0;
padding: 0;
letter-spacing: .35em;
color: #b3d9ff;
}
/*Picture */
div.art-filler {
display: flex;
background-repeat:no-repeat;
background-image: url("full-background-netarts.png");
margin: auto;
border-top: 5px solid hsla(0, 0%, 40%,.5);
background-clip: padding-box;
border-bottom: 10px solid hsla(0, 0%, 40%,.5);