-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
72 lines (66 loc) · 1.51 KB
/
styles.css
File metadata and controls
72 lines (66 loc) · 1.51 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
61
62
63
64
65
66
67
68
69
70
71
72
:root {
--radius: 10px;
--background-color: white
}
body {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
font-family: 'Josefin Sans', sans-serif;
background: rgb(180,180,183);
background: radial-gradient(circle, rgba(180,180,183,1) 0%, rgba(9,105,121,1) 100%, rgba(179,196,245,1) 100%);
}
#main_box {
background-color: white;
border-radius: var(--radius);
width: 500px;
height: 500px;
display: flex;
justify-content: center;
align-items: center;
margin-top: 30px;
border: 2px solid black;
}
#content {
background-color: lightseagreen;
border-radius: var(--radius);
height: 80%;
width: 80%;
display: flex;
justify-content: center;
align-items: center;
}
#padding {
background-color: lightsteelblue;
width: 80%;
height: 80%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
justify-content: space-evenly;
border-radius: var(--radius);
}
#border {
background-color: lightgreen;
width: 80%;
height: 80%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
justify-content: space-evenly;
border-radius: var(--radius);
}
#margin {
background-color: lightsalmon;
width: 80%;
height: 80%;
display: flex;
justify-content: center;
align-items: center;
justify-content: space-evenly;
flex-direction: column;
border-radius: var(--radius);
}