-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdmin.module.css
66 lines (56 loc) · 990 Bytes
/
Admin.module.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
.container {
min-height: 100vh;
display: flex;
}
.container section {
width: 60vw;
margin-right: 1rem;
}
.container aside {
display: flex;
flex-direction: column;
width: 20%;
min-width: 250px;
min-height: 200px;
text-align: center;
position: sticky;
top: 80px;
height: 0;
}
.hidden {
display: none;
}
.controls {
display: flex;
flex-direction: column;
}
.controls textarea {
height: 60vh;
border: none;
outline: none;
padding: 0.5rem;
font-size: 1.25rem;
}
.input {
outline: none;
border: none;
font-size: 2.5rem;
width: 100%;
padding: 5px 10px;
}
.checkbox {
display: inline;
width: auto;
}
@media only screen and (max-width: 768px) {
.container {
flex-direction: column;
}
.container section {
width: 100%;
}
.container aside {
width: 100%;
position: relative;
}
}