-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
103 lines (92 loc) · 1.64 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
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
body, html {
font-family: 'Merriweather', serif;
font-size: 10pt;
height: 100%;
margin: 0;
font-weight: 300;
color: #999;
line-height: 1.8;
}
h1 {
font-size: 4em;
margin-bottom: 0;
font-weight: 300;
}
h2 {
font-weight: 300;
color: #000;
}
h3 {
font-weight: 300;
}
h4 {
font-weight: 700;
font-family: 'Lato', sans-serif;
letter-spacing: 0.3em;
text-transform: uppercase;
}
#intro {
height: 100%;
text-shadow: 0px 0px 5px #000;
background-image: url("people.jpg");
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
padding-top: 8%;
padding-left: 8%;
color: white;
}
#about {
background-color: white;
padding: 8%;
}
#team {
display: flex;
}
#joyce {
flex: .5;
/* Just so it's visible */
padding-right: 15px;
}
#caroline {
flex: .5;
/* Grow to rest of container */
/* Just so it's visible */
padding-left: 15px;
}
#contact{
background-color: #333333;
padding: 8%;
color: white;
}
input[type=text] {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
}
.button {
background: transparent;
border: 1px solid #fff;
font-family: 'Lato', sans-serif;
letter-spacing: 0.3em;
text-transform: uppercase;
border-radius: 12px;
color: #fff;
padding: 16px 24px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: .8em;
box-shadow: 0px 0px 5px #333;
text-shadow: 0px 0px 5px #000;
margin-right: 10px;
margin-bottom: 10px;
}
.form label {
font-family: 'Lato', sans-serif;
font-size: 0.8em;
letter-spacing: 0.3em;
text-transform: uppercase;
}