-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
88 lines (76 loc) · 1.45 KB
/
index.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
.top {
text-align: center;
font-family: "Hammersmith One", sans-serif;
background-image: url(maybebackground.png);
padding-top: 100px;
padding-bottom: 100px;
color: peachpuff;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: coral;
position: sticky;
top: 0;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover:not(.active) {
background-color: orangered;
}
.active {
background-color: lightcoral;
}
#womanimg {
margin-top: 50px;
float: left;
width: 350px;
height: 250px;
border-radius: 100px;
}
#whatarewe, #whatarewelookingfor {
font-size: 38px;
margin-left: 20px;
color: moccasin;
font-family: "Hammersmith One", sans-serif;
}
p {
font-size: 20px;
font-family: "Manjari", sans-serif;
color: lightslategray;
}
.firstpart {
background-color: antiquewhite;
border-radius: 20px;
float: right;
padding-left: 10px;
margin-top: 50px;
max-width: 900px;
}
#woman2img {
margin-top: 50px;
float: left;
width: 350px;
height: 250px;
border-radius: 100px;
left: 0px;
position: relative;
}
.secondpart {
background-color: linen;
border-radius: 20px;
position: static;
padding-left: 10px;
margin-top: 50px;
max-width: 800px;
}