-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
68 lines (57 loc) · 1.08 KB
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap');
:root {
--primary-color:#F2C94C;
--width-break: 600px;
}
body{
font-family: 'Roboto Mono', monospace;
margin: 0px;
}
h1, footer{
background-color:var(--primary-color);
text-align: center;
font-weight: bold;
padding: 2rem;
margin-block-start: 0em;
margin-block-end: 0em;
}
.container {
margin: auto;
padding: 1rem;
max-width: var(--width-break);
}
.div-container {
padding-left: 1rem;
}
textarea{
height: 5rem;
width: 80%;
display: block;
margin: 1rem;
padding: 1rem;
}
#output {
height: 5rem;
width: 80%;
border: 1px solid black;
display: block;
margin: 1rem;
padding: 1rem;
}
#button-main {
background-color: var(--primary-color);
border: none;
margin: 1rem 1rem;
padding: 1rem 2rem;
font-size: large;
box-sizing: border-box;
}
footer p {
font-weight: normal;
}
footer div {
text-align: center;
font-weight: bold;
font-size: larger;
text-align: center;
}