all repos — comments @ 61531281bd4f341abb36aafb419a37be48bde9a5

django app for embedding comment threads in a static site via iframes

static/thread.css (raw)

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
body
{
  font-family: Monospace;
  font-size: 10px;
  color: #797979;
  background-color: #000000;
}

#main
{
}

#commentwrapper
{
  position: relative;
  display: grid;
  grid-template-rows: 18px 18px 1fr;
  grid-template-columns: 1fr;
}

.author
{
  color: #c4c4c4;
  grid-row: 1;
  padding-top: 8px;
}

.datetime
{
  color: #3f3f3f;
  grid-row: 2;
  padding-left: 4px;
}

.commentdata
{
  grid-row: 3;
  padding-left: 4px;
}

#errormsg
{
  color: #c43f3f
}

.myInputs
{
  border: 1px solid #3f3f3f;
  background-color: #000000;
  color: #797979;
}

.myButton
{
  font-weight: bold;
  color: #3b9088;
  background-color: #000000;
  border: none;
}

.myButton:hover
{
  color: #6aa6a0;
}

textarea
{
  width: 100%;
  height: 48px;
}