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: 5c41c992ded473af103d01e7e91e2db2986702cd (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
62
63
64
65
66
.staticman-comments form {
  margin-top: 1rem;
}

.staticman-comments .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"], .staticman-comments input[type="reset"] {
  background-color: #ebeffa;
  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: 1.5rem;
}

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

.staticman-comments form:disabled, .staticman-comments input:disabled, .staticman-comments textarea:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.staticman-comments strong.hidden, .staticman-comments input[type="submit"].hidden {
  display: none;
}