-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
124 lines (105 loc) · 1.79 KB
/
index.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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
body {
font-family: "Gill Sans", sans-serif;
color: #111;
}
.container {
width: 900px;
margin: 20px auto 0;
padding: 20px;
}
.login {
margin: 200px auto 0;
display: flex;
flex-direction: column;
align-content: center;
}
.login-toast {
color: #c00;
}
.login form {
margin: 0 auto;
}
.login p {
display: block;
margin: 7px 0;
}
.login label {
min-width: 120px;
display: inline-block;
padding: 0 10px;
}
.post {
display: flex;
flex-direction: column;
}
.post a {
font-family: "Courier New", monospace;
font-size: 14px;
}
.post-description {
margin: 10px 0px;
overflow: scroll;
min-height: 100px;
max-height: 300px;
}
.post-tags {
margin: 10px;
display: flex;
align-items: flex-start;
height: 30px;
}
.post-tag {
margin: 0 5px;
padding: 1px 5px;
color: #333;
background-color: #ddd;
border-radius: 4px;
}
.post-tag button {
font-size: 1em;
color: #f40;
padding: 2px;
background-color: inherit;
border-radius: 4px;
border: 0;
cursor: pointer;
}
.post-controls {
padding: 10px;
display: flex;
margin: 0 20px;
justify-content: space-between;
}
.post-controls button {
border: none;
font-weight: bold;
font-size: 14px;
font-family: verdana;
display: inline-block;
background-color: #01dbff;
vertical-align: middle;
padding: 8px 16px;
margin: 0 10px;
}
.hotkeys-help {
padding: 0px 7px;
color: #666;
margin-top: 20px;
}
.hotkeys-help h3 {
font-family: monospace;
margin: 3px 0;
}
.hotkeys-help ul {
list-style-type: none;
padding: 0;
margin: 5px 0;
}
.tagger-header {
display: flex;
justify-content: space-between;
}
.tagger-toast {
color: #c00;
padding: 10px;
}