-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
83 lines (78 loc) · 1.33 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
@import url("https://fonts.googleapis.com/css2?family=Big+Shoulders+Stencil+Text:wght@400;700&display=swap");
html {
height: 100%;
font-family: "Big Shoulders Stencil Text", cursive;
font-size: 24px;
}
body {
height: 100%;
margin: 0;
}
.interface {
min-height: 100%;
display: flex;
flex-direction: column;
}
.interface > header, .interface > footer {
background-color: #333;
color: #fff;
}
.interface > .body {
flex: 1 0 0;
padding: 1em;
display: flex;
justify-content: center;
gap: 1em;
flex-wrap: wrap;
background-color: #ddc;
}
.interface > header {
display: flex;
align-items: center;
justify-content: center;
gap: 1em;
padding: 1em;
}
.interface > header h1 {
font-size: 4em;
margin: 0;
}
.interface > header img {
height: 6em;
}
.interface > footer {
font-size: smaller;
text-align: center;
padding: 0.5em 0;
}
form {
background-color: #333;
color: #fff;
padding: 1em;
}
form h2 {
margin: 0;
}
form > div {
margin: 1em 0;
}
svg {
display: block;
background-color: #fff;
}
button {
font-family: inherit;
width: 100%;
font-size: 2em;
font-weight: bold;
background-color: purple;
color: #fff;
border-radius: 1rem;
margin-top: 1rem;
border: none;
padding: 0.25em;
cursor: pointer;
}
button:hover {
background-color: red;
}/*# sourceMappingURL=style.css.map */