-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
57 lines (51 loc) · 997 Bytes
/
style.css
File metadata and controls
57 lines (51 loc) · 997 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
:root {
--white: hsl(0, 0%, 100%);
--gray: hsl(212, 45%, 89%);
--grayishBlue: hsl(220, 15%, 55%);
--darkBlue: hsl(218, 44%, 22%);
}
body {
background-color: var(--gray);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: calc(100vh -1px);
}
img {
border-radius: 10px;
max-width: 100%;
height: 100%;
margin-bottom: 10px;
}
.container h1 {
display: flex;
justify-content: center;
font-family: "Outfit", sans-serif;
font-size: 15px;
text-align: center;
color: var(--darkBlue);
font-weight: 700;
}
p {
font-family: "Poppins", sans-serif;
font-size: 15px;
text-align: center;
color: var(--grayishBlue);
font-weight: 400;
}
.container {
background-color: var(--white);
padding: 1.25rem;
width: 50%;
margin: auto;
border-radius: 10px;
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
margin-bottom: 20px;
margin-top: 20px;
}
@media (min-width: 500px) {
.container {
width: 400px;
}
}