Welcome to mirror list, hosted at ThFree Co, Russian Federation.

staticman.css « css « assets - gitlab.com/VincentTam/huginn.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2b3e8a84aa7cbbe3738cb997be8d85b18d15d6a2 (plain)
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
.staticman-comments form {
  margin-top: 1rem;
}

.staticman-comments article.static-comment {
  padding: 0.5rem 0.3rem;
  margin: 0.6rem 0.3rem;
}

.staticman-comments input {
  margin: .3rem 0;
  padding:.4rem .8rem;
  border: .1rem solid #768294;
  border-radius:3px;
  background-color:#fff;
  width: 60%;
  max-width: 95%;
  display: block;
}

.staticman-comments input[type="submit"], input[type="reset"] {
  width: auto;
  display: inline;
}

.staticman-comments .g-recaptcha {
  padding: 0.5rem 0;
}

.staticman-comments textarea {
  margin: .3rem 0;
  padding:.2rem .4rem;
  border: .1rem solid #768294;
  border-radius:2px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-height: 5rem;
}

.staticman-comments .comment-avatar {
  float: left;
  width: 3rem;
  height: 3rem;
  margin-right: 1rem;
}

.staticman-comments .static-comment-reply {
  margin-left: 1rem;
}

.staticman-comments .reply-target::before {
  content: ' ↷ ';
}

.staticman-comments .form--loading:before {
    opacity: 0.5;
    cursor: not-allowed;
}