-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
78 lines (65 loc) · 1.16 KB
/
style.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
67
68
69
70
71
72
73
74
75
76
77
78
body {
font-family: 'Roboto';
font-weight: 400;
font-size: 20pt;
margin: 0px;
}
.container {
width: 90%;
display: flex;
margin-top: 2rem;
margin-bottom: 2rem;
margin-left: auto;
margin-right: auto;
flex-direction: column;
align-items: center;
}
textarea {
width: 100%;
height: 45%;
font-family: 'Roboto';
font-weight: 400;
font-size: 20pt;
margin-bottom: 5rem;
resize: vertical;
border: none;
background-color: lightgray;
border-radius: 10px;
padding: 15px;
}
textarea::-webkit-scrollbar {
width: 15px;
}
textarea::-webkit-scrollbar-thumb {
background: #888;
}
textarea::-webkit-scrollbar-thumb:hover {
background: #555;
}
.output {
border: none;
background-color: lightgray;
border-radius: 10px;
width: 100%;
height: auto;
font-family: 'Roboto';
font-weight: 400;
}
.bold {
font-weight: 900;
}
.controls {
margin-bottom: 2rem;
margin-right: auto;
}
.option {
margin-bottom: 0.5rem;
}
@media (max-width: 800px) {
textarea#input {
height: 45vh !important;
}
.output {
height: 45vh !important;
}
}