-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
85 lines (73 loc) · 1.37 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
height: 100vh;
width: 100vw;
background: rgb(1,49,87);
background: radial-gradient(circle, rgba(1,49,87,1) 7%, rgba(1,65,87,1) 13%, rgba(63,1,87,1) 64%, rgba(35,1,87,1) 92%);
font-family: 'Courier New', Courier, monospace;
color: white;
overflow-x: hidden;
display: flex;
flex-direction: column;
/* align-items: center; */
}
header {
background-color: black;
/* color: white; */
text-align: center;
}
#input-container {
margin-top: 1rem;
/* margin-left: 1rem; */
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
main h3 {
margin-bottom: 1rem;
}
main input {
margin-bottom: 1rem;
width: 50%;
}
main h4 {
margin-bottom: 1rem;
}
#please-center {
display: flex;
justify-content: center;
}
main button {
width: 4rem;
background-color: darkblue;
color: white;
}
#remove-btn {
background-color: black;
color: white;
margin-left: 1rem;
}
#display-container {
margin-top: 2em;
display: flex;
flex-direction: column;
align-items: center;
}
.cards {
display: flex;
flex-direction: row;
margin-bottom: 1rem;
}
footer {
width: 100%;
background-color: black;
position: fixed;
bottom: 0;
display: flex;
justify-content: center;
}