-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.css
67 lines (61 loc) · 1.04 KB
/
main.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
:root {
--primary-color: #fbbf24;
--bar-color: #4b5563;
}
body {
background-color: var(--primary-color);
}
textarea {
display: block;
margin: 1rem;
height: 13rem;
width: 50rem;
text-align: center;
border-radius: 1.1rem;
border-color: black;
padding: 4rem;
min-width: 500px;
max-width: 100%;
min-height: 50px;
}
#output {
border: 1px solid black;
height: 13rem;
width: 50rem;
border-radius: 1.1rem;
background-color: white;
padding: 4rem;
min-width: 500px;
max-width: 100%;
min-height: 50px;
}
li {
display: inline;
margin: 1rem;
}
.nav {
border-top-left-radius: 1.5rem;
border-bottom-right-radius: 1.5rem;
background-color: var(--bar-color);
margin: 1rem;
font-family: "Fredoka One";
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem;
color: white;
}
.nav-header {
text-align: left;
color: white;
}
@media only screen and (max-width: 600px) {
textarea {
width: 25rem;
min-width: 250px;
}
#output {
width: 25rem;
min-width: 250px;
}
}