-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.scss
91 lines (82 loc) · 1.29 KB
/
style.scss
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
@import url("https://fonts.googleapis.com/css?family=Press+Start+2P&display=swap");
*,
*::after,
*::before {
box-sizing: border-box;
}
body {
margin: 2px;
overscroll-behavior: none;
background-color: black;
color: white;
font-family: "Press Start 2P", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
font-family: inherit;
font-weight: 500;
line-height: 1.1;
color: inherit;
}
.button {
padding: 10px 15px;
font-family: "Press Start 2P", sans-serif;
font-size: 12px;
color: white;
cursor: pointer;
background-color: #3a9364;
border: none;
box-shadow: none;
appearance: none;
&:focus {
border: none;
outline: none;
box-shadow: none;
}
&:hover {
opacity: 0.8;
}
}
input {
padding: 10px 15px;
font-family: "Press Start 2P", sans-serif;
font-size: 12px;
}
form {
display: flex;
flex-direction: column;
flex-wrap: nowrap;
justify-content: center;
align-items: center;
align-content: normal;
height: 100vh;
h1, h2, h3 {
text-align: center;
}
>* {
max-width: 400px;
display: block;
flex-grow: 0;
flex-shrink: 1;
flex-basis: auto;
align-self: auto;
order: 0;
margin-bottom: 10px;
}
}
iframe {
width: 80vw;
height: 80vh;
border: none;
background-color: white;
}