-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
53 lines (46 loc) · 753 Bytes
/
styles.css
File metadata and controls
53 lines (46 loc) · 753 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, html {
height: 100%;
}
html {
font-size: 20px;
}
body {
background: url('/images/unsplash.jpeg') no-repeat;
background-size: cover;
font-family: monospace;
display: flex;
align-items: center;
justify-content: center;
}
.container {
max-width: 500px;
background: rgba(255,255,255,.75);
padding: 1rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
li {
border-bottom: 1px solid rgba(0,0,0,.2);
padding-bottom: .5rem;
margin-bottom: .5rem;
}
form {
display: flex;
align-items: flex-end;
width: 100%;
}
button {
border: 0;
background: #eee;
margin-left: 1rem;
white-space: nowrap;
font-size: 1rem;
padding: .5rem;
}
textarea {
border: 0;
width: 100%;
font-size: 1.25rem;
}