-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (53 loc) · 1.02 KB
/
style.css
File metadata and controls
60 lines (53 loc) · 1.02 KB
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
:root {
--Yellow: hsl(47, 88%, 63%);
--White: hsl(0, 0%, 100%);
--Gray500: hsl(0, 0%, 42%);
--Gray950: hsl(0, 0%, 7%);
}
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body{
background-color: var(--Yellow);
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
height: 100vh;
gap: 20px;
font-family: "Figtree", sans-serif;
font-optical-sizing: auto;
font-weight: 500 800;
font-style: normal;
}
.container{
border: 1px solid;
border-radius: 10px;
background-color: var(--White);
display: flex;
flex-direction: column;
padding: 20px;
align-items: flex-start;
justify-content: center;
width: 400px;
gap: 10px;
box-shadow: 10px 10px;
}
.okay{
width: 350px;
border-radius: 10px;
}
button{
background-color: var(--Yellow);
border: none;
padding: 4px 7px;
border-radius: 5px;
font-weight: bolder;
}
.yes{
display: flex;
align-items: center;
gap: 10px;
}