-
Notifications
You must be signed in to change notification settings - Fork 30
/
basic.css
60 lines (53 loc) · 997 Bytes
/
basic.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
html, body {
margin: 0;
/* padding: 0.5em 1em; */
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
color: #546267;
background: #BFBFBF;
}
/* Styles for the landing page */
#landing-page{
position:absolute;
height:100vh;
width:100vw;
font-family: 'K2D', sans-serif;
display:grid;
place-items:center;
transform:translateY(0);
background: #546267;
transition: 1s ease-in;
}
form{
padding: 0.5em 1em;
}
textarea {
background: #FFFFFF;
color: #191A26;
border: 1px solid #191A26;
display: block;
width: 100%;
min-height: 5em;
font-size: 1.25em;
margin: 0.5em 0;
}
input[type=submit] {
background: #546267;
color: #FFFFFF;
font-size: 1.25em;
float: right;
margin: 0.5em 0;
border: none;
padding: 0.5em;
}
h2 > a {
color: #ED2C26;
text-decoration: none;
}
h2 > a:hover {
text-decoration: underline;
}
blockquote {
background: #FFFFFF;
padding: 2em;
font-size: 1.25em;
}