-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.css
More file actions
57 lines (46 loc) · 785 Bytes
/
index.css
File metadata and controls
57 lines (46 loc) · 785 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
body {
margin: 0;
padding: 2rem 0;
width: 100vw;
height: 90vh;
background: rgb(29, 28, 114);
font-family: 'Inconsolata', monospace;
text-align: center;
}
main {
background: white;
width: 80vw;
height: 80vh;
margin: auto;
border-radius: 5px;
padding: 1rem 0;
}
h1 {
margin: 0 1rem 0 1rem;
padding: 1rem;
background: rgb(124, 124, 218);
height: 10rem;
}
h2{
margin: 0 1rem 0 1rem;
padding: 1rem;
background-color: rgb(224, 129, 129);
height: 8rem;
display: none;
}
.addBox {
margin: 1rem;
text-align: right;
display: float;
flex-wrap: wrap;
}
.delButton {
margin: 0 1rem 0 1rem;
position: absolute;
}
footer {
color: white;
}
textarea {
width: 60%;
}