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
92
93
|
* {
margin: 0;
padding: 0;
}
/* General styles */
body {
font-family: "VT323", sans-serif;
}
a {
color: #00e;
}
a:active {
color: #e00;
}
a:visited {
color: #551a8b;
}
h1 {
font-size: 48px;
}
section {
padding: 24px;
}
/* Header */
#dasein .dasein-header {
text-align: center;
}
#dasein .dasein-header a {
font-size: 96px;
}
.welcome-container,
.login-container {
font-size: 24px;
padding: 50px 10px 10px;
}
/* The stream */
.posts-container .post .post-meta {
background-color: lightgray;
display: flex;
align-items: center;
}
.post-meta time, .post-meta a {
padding: 0 10px;
}
.posts-container .post .post-content,
.post-form-container .post-content-input,
.post-form-container .post-submit {
font-family: -apple-system, BlinkMacSystemFont,
"Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans",
"Droid Sans", "Helvetica Neue", sans-serif;
font-size: 24px;
padding: 10px;
}
.post-form-container .post-content-input {
display: block;
margin: 10px;
width: 90%;
resize: none;
height: 140px;
}
.post-form-container .post-submit {
margin: 10px auto;
display: block;
background-color: lightgray;
}
.post-form-container .post-submit:active {
background-color: cyan;
}
.posts-error,
.post-form-error {
color: red;
padding: 10px;
}
|