-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
71 lines (61 loc) · 1.15 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
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@1,300&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family: 'Roboto Mono', monospace;
}
.navbar{
background-image: linear-gradient(#5aaccf, #1c406eb3);
text-align: center;
font-size: 2rem;
padding: 1.5rem;
}
section{
margin: auto;
max-width: 600px;
padding: 1rem;
}
textarea{
width: 100%;
display: block;
font-size: large;
margin-top: 2rem;
max-height: 20vh;
}
.btn{
margin: 1rem 0;
border: none;
font-size: 30px;
padding: 1rem;
background-image: linear-gradient(#5aaccf, #1c406eb3);
font-family: inherit;
}
.btn:hover{
cursor: pointer;
}
#output{
margin-top: 5px;
padding: 1rem;
width: 100%;
max-height: 20vh;
min-height: 10vh;
border: 1px solid black;
overflow: scroll;
}
#footer{
background-image: linear-gradient(#5aaccf, #1c406eb3);
text-align: center;
font-size: 1.5rem;
padding: 1rem;
width: 100%;
position: fixed;
bottom: 0;
}
#footer p{
max-width: 600px;
margin: auto;
font-size: medium;
}