-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpart2.css
128 lines (104 loc) · 1.78 KB
/
part2.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
text-align: center;
}
.navbar {
display: flex;
justify-content: space-between;
padding: 20px 200px;
box-shadow: 2px 1px 2px #eee;
align-items: center;
background-color: #fff;
}
.navbar img {
height: 18px;
cursor: pointer;
}
.nav-menu {
display: flex;
}
.nav-menu div {
padding: 20px;
color: #666;
cursor: pointer;
}
.nav-menu div:hover {
color: #000;
}
.landing-section {
display: flex;
justify-content: center;
padding: 50px 0;
text-align: center;
}
.landing-section img {
width: 100%;
max-width: 750px;
}
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 20px;
}
.content h1 {
font-weight: 400;
font-size: 40px;
margin: 0;
}
.content h3 {
font-weight: 750;
color: #666;
margin: 10px 0;
}
.signup-btn {
display: flex;
justify-content: center;
padding: 20px;
}
.signup-btn div {
background-color: #387ed1;
color: #eee;
border-radius: 3px;
font-size: 20px;
padding: 10px 30px;
cursor: pointer;
}
.signup-btn div:hover {
background-color: #306bb3;
}
.footer {
display: flex;
justify-content: space-around;
padding: 20px 200px;
background-color: #387ed1;
color: #eee;
}
.footer-section {
flex: 1;
padding: 20px;
}
.footer-section h4 {
margin-bottom: 10px;
}
.footer-section p {
margin: 5px 0;
}
.footer-section a {
color: #eee;
text-decoration: none;
}
.footer-section a:hover {
text-decoration: underline;
}
.footer-section p:hover {
cursor: pointer;
text-decoration: underline;
}
.footer-section i {
margin-right: 8px;
}