-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (46 loc) · 923 Bytes
/
style.css
File metadata and controls
50 lines (46 loc) · 923 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
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display&display=swap');
/* CSS RESET */
*, *::before, *::after {
box-sizing: border-box;
margin: 0;
}
/* ====== GENERAL TAGS ====== */
body{
padding: 8% 10%;
font-family: 'Red Hat Display', sans-serif;
}
h1{
text-align: center;
}
/* ======= CONTAINER ======= */
#container{
margin: 2rem auto;
padding: 2rem;
background-color: rgb(133, 231, 133);
width: 80%;
display: flex;
justify-content: space-around;
text-align: center;
}
@media (max-width: 900px){
#container{
flex-direction: column;
}
.input-div{
margin: 20px auto;
}
}
/* ====== INPUT SECTION ====== */
label{
font-size: 1.5rem;
}
.entry{
display: block;
font-size: 1.8rem;
font-weight: bold;
width: 90%;
min-width: 100px;
margin: auto;
text-align: center;
padding: 0.4em 0.6em;
}