-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (51 loc) · 893 Bytes
/
style.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
body {
background-color: #F8F8F8;
font-family: sans-serif;
}
.big-container {
height: 100%;
width: 100%;
margin-top: 2rem;
display: flex;
justify-content: center;
}
.container {
border: 1 px solid black;
background-color: white;
display: flex;
flex-direction: column;
padding: 2rem;
align-items: center;
}
input {
padding: 0.5rem;
width: 17rem;
background-color: #F8F8F8;
margin: 0.2rem;
}
.btn {
width: 18rem;
padding: 0.4rem;
margin-top: 0.5rem;
background-color: #b8ddfb;
font-size: 0.8rem;
color: white;
font-weight: bold;
}
a {
text-decoration: none;
}
footer {
min-height: 10vh;
}
ul {
list-style: none;
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.footer {
color: #2f5682;
font-size: 0.8rem;
font-weight: bold;
}