metro-lake.css
2.87 KB
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/*---------------------------------------------------
LESS Elements 0.9
---------------------------------------------------
A set of useful LESS mixins
More info at: http://lesselements.com
---------------------------------------------------*/
/**
* https://github.com/rhiokim/markdown-css
* made by rhio.kim
*/
::before, ::after, * {
box-sizing: border-box;
}
.metro-lake {
font-family: system, -apple-system, BlinkMacSystemFont,
"PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "STHeiti", "SimSun",
"Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", 'Segoe UI',
AppleSDGothicNeo-Medium, "Malgun Gothic", Verdana, Tahoma, "Helvetica Neue", Helvetica, Arial, sans-serif;
padding: 0;
color: #333;
font-size: 0.875rem;
background: #ffffff;
-webkit-font-smoothing: antialiased;
word-wrap: break-word;
-webkit-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
}
.metro-lake a {
color: #3269a0;
}
.metro-lake a:hover {
color: #4183c4;
}
.metro-lake blockquote {
border-left: 2px solid #666;
padding: 0 15px;
font-style: italic;
color: #777;
}
.metro-lake h1,
.metro-lake h2,
.metro-lake h3,
.metro-lake h4,
.metro-lake h5 {
font-weight: 400;
color: #444;
letter-spacing: 2px;
}
.metro-lake h1 {
text-align: center;
line-height: 2rem;
font-size: 2rem;
}
.metro-lake h2 {
width: max-content;
margin: 0.8rem auto;
font-size: 1.4rem;
border-bottom: 1px solid #bbb;
/*line-height: 1.6rem;*/
padding-bottom: 0.5rem;
text-align: center;
}
.metro-lake blockquote h2:before {
content: '';
padding-right: 0;
}
.metro-lake h5 {
font-weight: bold;
}
.metro-lake h6 {
color: #666;
}
.metro-lake hr {
border-top: none;
border-right: none;
border-bottom: 1px solid;
border-left: none;
border-color: #ddd;
margin: 10px 0 10px;
}
.metro-lake p {
line-height: 1.5rem;
}
.metro-lake p > code {
color: #777777;
font-size: 15px;
padding: 3px;
}
.metro-lake pre > code {
font-size: 14px;
letter-spacing: -1px;
font-weight: normal;
}
.metro-lake strong {
font-weight: 600;
}
.metro-lake table {
width: 100%;
background-color: #fafafa;
}
.metro-lake table tr th,
.metro-lake table tr td {
border: 1px solid #e6e6e6;
}
.metro-lake table tr:nth-child(2n) {
background-color: #f2f2f2;
}
/**
* after less
*/
/*
.haroopad {
img {
.bordered(@border-color, @border-color, @border-color, @border-color);
.rounded(3px);
.box-shadow(0 0 7px darken(@border-color, 18%));
&:hover {
-webkit-animation-duration: 1s;
-webkit-animation-delay: .2s;
.pulse;
}
}
h1 {
-webkit-animation-duration: .5s;
-webkit-animation-delay: .2s;
.tada;
}
&>ul {
&>li {
-webkit-animation-duration: .5s;
-webkit-animation-delay: .2s;
.fadeInLeft;
}
}
}
*/