-
Notifications
You must be signed in to change notification settings - Fork 10
/
style.css
91 lines (76 loc) · 1.41 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
body {
width: 1024px;
margin: auto;
display: flex;
flex-direction: column;
justify-content: stretch;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
body > div {
margin-top: 40px;
}
.hero {
width: 60%;
display: flex;
flex-direction: row;
align-items: flex-start;
}
.hero-title {
background-color: #FFE3F1;
width: 350px;
height: 180px;
border-radius: 40px;
padding: 20px 40px 20px 40px;
margin-bottom: 30px;
}
button {
border: none;
border-radius: 20px;
padding: 20px 30px;
font-size: larger;
background-color: #FF4488;
color: white;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.hero-title h1:not(strong) {
color: #FF4488;
}
.hero-title h1 strong, .hero-title h2 {
color: #49001B;
}
nav {
width: 100%;
}
nav ul {
width: 100%;
list-style: none;
display: flex;
align-items: flex-start;
}
nav li {
padding:0 10px;
}
nav ul:first-child {
padding: 0;
}
nav li a {
text-decoration: none;
}
.rectangle, .ellipse, .triangle {
position: relative;
}
.rectangle {
left: 70px;
top: -30px;
width: 100px;
}
.ellipse {
top: -40px;
width: 40px;
left: 80px;
}
.triangle {
left: 20px;
top: -45px;
width: 80px;
}