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

main.css « css « static - github.com/vickylaixy/hugo-theme-introduction.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 484c64e5906fe2524bda9c89f2ea35c16023c184 (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
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
/* make keyframes that tell the start state and the end state of our object */
 
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
 
.fade-in {
	opacity:0;  /* make things invisible upon start */
	-webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animation ease-in and repeat it only 1 time */
	-moz-animation:fadeIn ease-in 1;
	animation:fadeIn ease-in 1;
 
	-webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;
 
	-webkit-animation-duration:1s;
	-moz-animation-duration:1s;
	animation-duration:1s;
}
 
.fade-in.one {
-webkit-animation-delay: 0.7s;
-moz-animation-delay: 0.7s;
animation-delay: 0.7s;
}
 
.fade-in.two {
-webkit-animation-delay: 1.4s;
-moz-animation-delay:1.4s;
animation-delay: 1.4s;
}
 
.fade-in.three {
-webkit-animation-delay: 1.8s;
-moz-animation-delay: 1.8s;
animation-delay: 1.8s;
}
body {
    font-size: 14px;
    font-family: 'Work Sans', sans-serif;
    color: #666;    
}
a {
    color: #00b8d4;
}
a:hover {
    color: #000;
    font-style: none;
}
a:active {
    color: #00b8d4;
}
h1 {
    color: #222;
}
h2 {
    color: #222;
}
hr {

}
ul {
    padding: 0;
}
li {
    display: block;
    list-style: none;
    list-style-position: outside;
    margin-left: 0;
}
.main {
    padding: 0px 40px 40px 40px;
    width: 80%;
    margin: 0 auto;
    float: center;
}
@media (max-width: 600px) {
    .main {
        padding: 0px 20px 20px 20px;
        width: 100%;
        margin: 0 auto;
        float: center;
    }
}
.nav {
    text-align: center;
    text-transform: uppercase;
    margin: 5% 0 5% 0;
}
.content {
    margin: 0em 0em 4em 0em;
    padding: 20px;
}
.markdown {

}
.pagehead {
	margin: 20% 20% 5% 20%;
    text-align: center;
}
.list-head {
    text-align: left;
    margin: 20% 0 0 0;
}
.list-title {
    font-size: 8em;
    font-weight: bold;
    margin-left: -10px;
}
@media (max-width: 550px) {
    .list-title {
        font-size: 3em;
        font-weight:bold;
        margin-left: 0;
    }
}
.section-head {
    font-size: 3em;
    text-align: center;
    margin: 1.5em 0em 1.5em 0em;
}
@media (max-width: 550px) {
    .section-head {
        font-size: 2em;
        text-align: center;
        margin: 1em 0em 1em 0em;
    }
}
.profile-pic {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.img-responsive {
    border-radius: 5px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
}
.intro {
    font-size: 8em;
    font-weight: bold;
}
@media (max-width: 550px) {
    .intro {
        font-size: 3em;
        font-weight:bold;
    }
}
.blurb {
    font-size: 2em;
    text-align: center;
}
@media (max-width: 550px) {
    .blurb {
        font-size: 1em;
        text-align: center;
    }
}
.social-icons {
    text-align: center;
    font-size: 2em;
    margin: 1em;
}
.highlight-text {
    font-size: 2em;
    margin: 0.8em 0em 0.5em 0em;
}
.project-grid {
    padding: 1.2em 0em 0em 0em;
}
.project-title {
    font-size: 1.5em;
    font-weight: bold;
}
.thumbnail {
    border: none;
}
.summary {
    margin: 0 0 1.5em 0;
}
.bloglist {
    text-align: center;
}
.blog-header {
    margin: 10% 0 5% 0;
    text-align: left;
    font-size: 3em;
    font-weight: bold;
}
@media (max-width: 550px) {
    .blog-header {
    margin: 10% 0 5% 0;
    text-align: left;
    font-size: 2em;
    font-weight: bold;
    }
}
.post-data {
    font-size: 0.5em;
    font-weight: normal;
}
.blog-share {
    font-size: 0.3em;
    font-weight: normal;
    line-height: 2em;
}
#footer {
    text-align: center;
    color: #888;
    padding: 2em;
}
#footer a {
    color: #888;
}