-
Notifications
You must be signed in to change notification settings - Fork 118
/
Copy pathstyle.css
64 lines (55 loc) · 1007 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
62
63
64
/* styles.css */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: hsl(210, 30%, 10%);
color: hsl(0, 0%, 100%);
text-align: center;
padding: 2em;
}
nav ul {
list-style-type: none;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2em;
padding: 1em;
}
nav li {
text-align: center;
}
main {
max-width: 800px;
margin: 2em auto;
padding: 2em;
}
section {
margin-bottom: 2em;
}
footer {
background-color: hsl(210, 30%, 10%);
color: hsl(0, 0%, 100%);
text-align: center;
padding: 1em;
position: absolute;
bottom: 0;
width: 100%;
}
#hash-input {
border: 1px solid hsl(210, 30%, 70%);
padding: 1em;
}
#hash-input-box {
width: 100%;
padding: 0.5em;
margin-bottom: 1em;
}
#hash-form input[type="submit"] {
padding: 0.5em 1em;
background-color: hsl(210, 30%, 10%);
color: hsl(0, 0%, 100%);
border: none;
cursor: pointer;
}