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

blog.css « v1 « css « static - github.com/gurusabarish/hugo-profile.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3f29aa69fcee1a7a56546ffdb3b2281f91934a38 (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
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
article blockquote {
  margin: 0 !;
  border-left: 4px solid #248aaa !important;
  background-color: #248baa15 !important;
  padding: 0.3rem !important;
  padding-left: 1rem !important;
}

article blockquote > p {
  color: #3c4858 !important;
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

article h1,
h2 {
  margin-top: 1.4rem;
  font-size: 32px;
  border-left: 4px solid #77ace9 !important;
  background-color: #b2cad43a !important;
  padding: 0.3rem !important;
  padding-left: 1rem !important;
}

article h3,
h4,
h5,
h6 {
  margin-top: 1.3rem;
}

article table {
  border-radius: 0.1rem;
  background: #e5e9f2;
  border: 1px solid #c0ccda;
  padding: 0.1rem;
}

article table tr {
  height: 40px !important;
}

article table th,
td {
  padding: 0.5rem;
  border-left: 1px solid #8392a5;
  border-bottom: 1px solid #8392a5;
}

article table thead tr {
  background: #248aaa;
  color: #e5e9f2;
}

article tbody tr:nth-child(odd) {
  background-color: #e5e9f2;
}

article tbody tr:hover {
  background: #c0ccda;
}

article img {
  width: 100%;
}

article caption,
figcaption {
  caption-side: bottom;
  text-align: center;
  color: #8392a5;
}

article pre {
  margin: 5px;
  padding: 5%;
  font-size: 18px;
  max-height: 400px;
  border-radius: 2%;
  background-color: #1f618d !important;
  color: white;
}

article pre > code {
  padding: 10px !important;
}

article a.header-anchor {
  text-decoration: none;
  color: #1c2d41;
}

article a.header-anchor i {
  font-size: 10pt;
  color: #3c4858;
  display: none;
  margin-left: 0.5rem;
}

article a.header-anchor:hover i {
  display: inline-block;
}

article a.header-anchor code {
  color: #e83e8c;
}

article kbd {
  background-color: #248aaa !important;
  color: #f9fafc;
}

article mark {
  background-color: #ffc21280;
}