-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (47 loc) · 907 Bytes
/
style.css
File metadata and controls
52 lines (47 loc) · 907 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
40
41
42
43
44
45
46
47
48
49
50
51
52
main {
display: flex;
max-width: 640px;
margin: 0 auto;
flex-direction: column;
}
#toggle-button.is-active {
background: green;
}
#toggle-button:hover {
background: blue;
}
#toggle-button {
background: deepskyblue;
border-top-right-radius: 1rem;
border-bottom-right-radius: 1rem;
border: none;
color: white;
cursor: pointer;
font-size: large;
font-weight: bold;
height: 4rem;
padding: 1rem;
transition: 0.4s;
}
#textarea {
border-top-left-radius: 1rem;
border-bottom-left-radius: 1rem;
height: 30rem;
font-size: x-large;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
overflow-y: scroll;
padding: 1rem;
}
#form-footer {
align-items: center;
display: flex;
margin-top: 1rem;
}
#toggle-language {
border-top-left-radius: 1rem;
border-bottom-left-radius: 1rem;
font-size: large;
flex: 1;
height: 4rem;
padding-left: 1rem;
}