forked from hackyourfuturecanada/Week3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
96 lines (78 loc) · 1.32 KB
/
style.css
File metadata and controls
96 lines (78 loc) · 1.32 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
body {
background:url("images/peak.jpg") no-repeat;
background-size:cover;
margin:0;
padding:0;
font-family: "Open Sans", "Helvetica Neue",sans-serif;
color:white;
}
.navbar ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color:#8C8586;
}
.navbar li {
float: left;
}
.navbar li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.navbar li a:hover {
background-color: #111;
}
.header-heading,
.header-intro {
text-align: center;
}
.header-intro{
font-size: 3em;
}
.header-heading{
font-size:5em;
font-family: 'Pacifico', cursive;
}
p{
font-size:22px;
line-height:1.5;
font-family: 'Satisfy', cursive;
}
header,
section,
footer {
padding: 100px 150px;
}
#goals,
#interests,
footer {
text-align: center;
}
#interests li {
list-style-type: none;
margin: 10px;
float: center;
color:black
}
img {
width:150px;
border-radius: 10%;
}
header {
background-color:rgb(171,166,170,0.8);
}
#goals {
background-color:rgb(148,150,161, 0.8);
color:white;
}
#interests {
background-color:rgb(231,224,220,0.8);
text-align:center;
}
footer {
background-color:rgb(190,112,93,0.8)
}