-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
67 lines (58 loc) · 987 Bytes
/
index.css
File metadata and controls
67 lines (58 loc) · 987 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
:root {
--black-color: #080808;
--white-color: #f8f8f8;
}
html,
body {
margin: 0;
padding: 0;
font-family: "Poppins", sans-serif;
background: url("../images/code.png");
}
header {
text-align: center;
font-size: 3rem;
font-weight: 500;
background-color: var(--black-color);
color: var(--white-color);
width: max-content;
padding: 8px;
margin: auto;
border-radius: 5px;
}
main {
width: 55%;
margin: 20px auto;
background-color: var(--white-color);
padding: 8px;
border-radius: 5px;
}
textarea {
width: 100%;
}
.switch-div {
margin: 8px auto;
display: flex;
justify-content: space-between;
}
.div-for-centering-button {
margin: 8px auto;
text-align: center;
}
button {
font-size: 2rem;
border-radius: 5px;
padding: 8px;
}
.output-area {
margin: 20px auto;
}
footer {
position: absolute;
width: 100%;
text-align: center;
left: 0;
bottom: 0;
background-color: var(--black-color);
color: var(--white-color);
}