-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyle.css
More file actions
39 lines (38 loc) · 706 Bytes
/
style.css
File metadata and controls
39 lines (38 loc) · 706 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Kanit", sans-serif;
background: #b6b6b6;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
.container {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
width: 100%;
}
.profile {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
background: #fff;
border-radius: 10px;
max-width: 400px;
width: 100%;
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
max-width: 900px;
width: 100%;
}