-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
81 lines (69 loc) · 986 Bytes
/
styles.css
File metadata and controls
81 lines (69 loc) · 986 Bytes
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
html {
background-color: #F3D9DC;
}
body {
margin: 0;
font-family: 'Open Sans Condensed', sans-serif;
}
header {
margin: 0 auto;
background-color: #744253;
}
h1 {
margin-top: 0;
text-align: center;
color: white;
}
.navbar {
background-color: #C78283;
color: white;
}
ul {
padding-left: 0;
width: 310px;
margin: 0 auto;
list-style: none;
}
li {
display: inline-block;
margin: 0 30px;
}
section {
display: inline-block;
margin: 35px;
background-color: white;
}
.about-me {
float: left;
width: 400px;
height: 200px;
padding: 4px;
margin-right: 25px;
border-radius: 2px;
}
.inspiration {
float: left;
width: 870px;
height: 200px;
padding: 0 4px;
border-radius: 2px;
}
.image {
width: 200px;
height: 200px;
border-radius: 50%;
background-color: pink;
}
img {
width: 212px;
height: 212px;
border-radius: 50%;
}
a {
text-decoration: none;
}
footer {
position: absolute;
bottom: 0;
margin: 0 auto;
}