-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
58 lines (43 loc) · 873 Bytes
/
index.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
*::before,
*::after {
box-sizing: border-box;
}
#title {}
#converted-text {}
#main-container {
display: flex;
flex-direction: column;
/* align-items: center; */
}
#top-bar-thing {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: flex-end;
flex-wrap: wrap;
margin-bottom: 0.75rem;
}
#encode-decode-select {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: 1rem;
}
@media (max-width: 768px) {
/* Adjust the min-width as needed for your design */
/* #encode-decode-select {
flex-direction: column;
} */
}
#input-textarea {
margin-bottom: 0.75rem;
}
#copy-encoded-buttons {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-end;
align-items: baseline;
gap: 1rem;
margin-bottom: 0.75rem;
}