forked from joker-jonesy/liftoff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
135 lines (117 loc) · 1.77 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
/*
* Some Default Styles are provided for your convenience.
* You can start adding your own CSS below line 60.
*/
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: Helvetica, Arial, sans-serif;
}
p {
color: #252525;
line-height: 1.5em;
}
h1 {
font-size: 3em;
}
h2 {
font-size: 2em;
font-weight: normal;
}
h1,
h2,
h3,
nav {
font-family: 'Saira Extra Condensed', sans-serif;
}
/* Responsive images */
img {
max-width: 100%;
height: auto;
}
/* Default section styling */
section {
position: relative;
width: 100vw;
overflow: hidden;
}
section h2 {
text-align: center;
position: relative;
margin: 60px 0;
}
section h2:after {
content: '';
position: absolute;
bottom: -20px;
width: 60px;
height: 1px;
background-color: #f39c12;
left: 50%;
margin-left: -30px;
}
/* Header defaults */
header {
background-color: rgba(37, 37, 37, 0.8);
display: flex;
position: fixed;
z-index: 2;
left: 5%;
width: 90%;
height: 60px;
border-radius: 0px 0px 30px 30px;
}
header > div{
position: relative;
top: 10px;
left: 10px;
}
header > nav > div{
margin: 40px;
display: inline;
}
header > nav{
position: absolute;
left: 70%;
top: 10px;
}
#about > div {
display: flex;
justify-content: center;
}
#about p {
flex: 3;
text-align: center;
}
#about #aboutmockup {
flex: 2;
align-self: flex-end;
}
#staff > div {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
flex-direction: row;
}
.staff-profile {
flex: 0 0 33%;
text-align: center;
}
.logo img{
height: 40px;
}
a{
color: white;
text-decoration: none;
font-size: large;
}
#carousel-text{
position:absolute;
text-align: center;
left: 30%;
top: 30%;
color: white;
}