-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
51 lines (51 loc) · 865 Bytes
/
styles.css
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
/* You can add global styles to this file, and also import other style files */
* {
margin: 0;
padding: 0;
}
html {
font-family: sans-serif;
}
body {
padding: 30px;
}
.screen {
display: grid;
grid-gap: 20px;
}
@media (min-width: 700px) {
.screen {
grid-template-columns: 260px 1fr;
}
}
.avatar {
position: sticky;
top: 30px;
display: flex;
justify-content: center;
}
.options {
display: grid;
grid-gap: 20px;
justify-items: flex-start;
}
.options > div {
display: grid;
grid-gap: 10px;
}
label {
display: inline-flex;
align-items: center;
gap: 6px;
margin-right: 10px;
margin-bottom: 10px;
}
button {
padding: 4px 6px;
}
.buttons {
display: grid;
grid-gap: 10px;
grid-auto-flow: column;
align-items: center;
}