-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (44 loc) · 790 Bytes
/
style.css
File metadata and controls
53 lines (44 loc) · 790 Bytes
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
body, input {
font-family: 'Raleway', sans-serif;
}
.flex {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
body {
min-height: 100vh;
background-size: cover;
background-position: center;
margin: 0;
}
section {
padding-bottom: 16vh;
flex-grow: 1;
width: 100%;
}
h1 {
font-size: 56px;
}
h2 {
margin: 32px 0 6px;
}
input {
display: block;
margin: 0 auto;
}
input[type="url"] {
color: inherit;
font-size: 18px;
width: 400px;
background-color: transparent;
outline: none;
border: none;
border-bottom: 1px solid;
text-align: center;
margin-top: 10px;
}
::placeholder {
color: inherit;
}