-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
110 lines (90 loc) · 1.66 KB
/
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
:root {
--background: #BFDBFE;
--text: #2563EB;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Montserrat', sans-serif;
}
body {
display: flex;
flex-direction: column;
min-height: 100vh;
overflow-x: hidden;
margin: 0 1rem;
background-color: var(--background);
color: var(--text);
}
header {
margin: 1rem;
}
h2 {
text-align: center;
margin: 1rem 0;
}
.github {
text-align: center;
}
main {
max-width: 600px;
margin: 0rem auto 2rem;
text-align: center;
}
form {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
input, button {
font-size: 1rem;
padding: 0.5rem;
margin: 1rem;
width: 11rem;
border: 2px solid var(--text);
border-radius: 0.2rem;
outline: none;
}
button {
background-color: var(--text);
color: white;
cursor: pointer;
margin-bottom: 2rem;
}
#result {
display: none;
width: 300px;
margin: auto;
padding: 0.5rem;
border: 2px solid var(--text);
border-radius: 0.2rem;
}
footer {
margin-top: auto;
height: 3rem;
line-height: 3rem;
width: 100%;
text-align: center;
}
footer a, .github a{
color: inherit;
}
.nav{
padding: 2rem;
background-color: var(--text);
color: var(--background);
text-align: center;
font-size: xx-large;
font-weight: bolder;
}
.footer{
padding: 4rem;
background-color: var(--text);
color: var(--background);
font-size: x-large;
font-weight: bolder;
text-decoration: none;
}