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

main.css « css « static - github.com/blankoworld/hugo_theme_adam_eve.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7ad79f556edaf61a30ee3ae7201519f16776586d (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
67
68
69
70
71
72
73
74
75
76
77
/* Common pages colors/display */
a:active, a:link, a:visited, a:hover {
  color: #2b73b7;
  text-decoration: none;
}

main a:active, main a:link, main a:visited, main a:hover {
 color: #080; // comment this line if you planned to use 'internal' shortcode
}

blockquote {
  padding: 0.5rem 1rem;
  border-left: 0.3rem solid #e5e5e5;
}


/* Shortcode 'nolink' */
span.nolink {
  color: red;
/*  border-bottom: 1px dashed;*/
}


/* Shortcode 'remote' */
a.remote:active, a.remote:link, a.remote:visited, a.remote:hover {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAQAAAC1+jfqAAABdklEQVR4AWMgAVRo1zY3rGk41rC+rqvCBCJWBpPM4WoomLHtdtuv/t9Lfk263TtrQ0t7Oj9cbzZDc/W6s/8T7khD+P+F/8bv29PZlswJVVBu0vPuVZyNYHFZbmAqE1SR0cbjXR6pjGBO58am962Ta3e3ftqy6B5LCcMasOj7gInrm9jBzI4vTX+bfjT/7/4/p/w/zFXybUmt71u4wJzGfxP/t/xvA+KaP2XnQSKVFpWPav/U/6+HKJjz++OVJUDp1n9N/+r+19QyMCz1mPC/8X/X/26Igrn3GiUeL5n/v+F/8//6/9NOMTC0hDUDefP/L4MoOL6ickVeSQ1QqAGooPdBJE/lnloge/fhixBHftFd9bLkR83/+n/1QAXVP8qX1Pyv/L/s/12f/4xQNz8s3Pa/6X/Vvzqgour/5f/r/q//f2fmLy54WP7lfJN74eMSoKIyoNFz/5/+9ar+Px9aZL3Xfjvz7aO3/96+eLvsnSVE7CPhOAYA9nvIX0UoNU8AAAAASUVORK5CYII=);
  background-repeat: no-repeat;
  background-position: 0 center;
  padding: 0 0 0 18px;
  word-wrap: break-word;
  color: #2b73b7;
}


/* Shortcode 'internal' */
a.internal:active, a.internal:link, a.internal:visited, a.internal:hover {
  color: #080;
  text-decoration: none;
}


/* Shortcode 'note' */
div.note {
  margin: 2em;
  border-radius: 20px;
  text-align: justify;
  vertical-align: middle;
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
  width: 70% !important;
  min-height: 40px;
  clear: both;
  padding: 15px 20px 15px 80px;
  background-position: 20px 50%;
  background-repeat: no-repeat;
}

div.warning {
  background-color: #fdd;
  background-image: url("/img/warning.png");
}

div.important {
  background-color: #ffc;
  background-image: url("/img/important.png");
}

div.tip {
  background-color: #dfd;
  background-image: url("/img/tip.png");
}

div.normal {
  background-color: #eef;
  background-image: url("/img/note.png");
}