forked from Ayodbuilder/Huuddle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
48 lines (42 loc) · 762 Bytes
/
style.css
File metadata and controls
48 lines (42 loc) · 762 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: hsl(257, 40%, 49%);
/* background-color: red; */
background-image: url(/week-6/image/bg-desktop.svg);
min-height: 100vh;
}
.container {
max-width: 80rem;
margin: 0 auto;
height: 100vh;
}
.content {
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 3rem;
}
.wrapper {
display: flex;
align-items: center;
gap: 3rem;
}
.header img {
width: 10rem;
margin-bottom: 2rem;
}
.header-text h1, p{
color: white;
margin-bottom: 2rem;
line-height: 1.4;
}
.header-text a{
text-decoration: none;
background-color: white;
padding: 0.8rem 4rem;
border-radius: 1.5rem;
}