-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
55 lines (54 loc) · 1.13 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #333;
}
main {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
.centered {
background: #aaa;
padding: 20px;
width: 100%;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
max-width: 400px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.164);
h1 {
text-align: center;
margin-bottom: 20px;
font-size: 25px;
a {
text-decoration: none;
}
}
label {
width: 100%;
display: block;
margin-bottom: 20px;
input {
width: 100%;
height: 40px;
border: solid 1px;
outline: none;
padding: 5px;
font-size: 18px;
margin-top: 2px;
}
}
.centered-submit {
width: 100%;
height: 35px;
border: solid 1px;
cursor: pointer;
}
button {
font-weight: bold;
}
}
}