-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.css
108 lines (108 loc) · 1.64 KB
/
example.css
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
/*
// Demo Stylesheet
// -------------------
*/
body {
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
font-size: 14px;
color: #333;
margin: 0 auto;
padding: 0;
background-color: black;
}
.clearfix:after {
visibility: hidden;
display: block;
font-size: 0;
content: " ";
clear: both;
height: 0;
}
.clearfix {
display: inline-block;
}
/* start commented backslash hack \*/
* html .clearfix {
height: 1%;
}
.clearfix {
display: block;
}
/* close commented backslash hack */
.clearLeft {
clear: left;
}
a {
color: #08c;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:link {
text-decoration: none;
}
a:hover {
color: #ccc;
}
.container {
margin: 0 auto;
}
h1,
h2 {
color: #222;
font-weight: 100;
width: 90%;
margin: 0 auto;
margin-top: 10px;
}
.App {
padding-top: 2px;
}
#Gallery {
width: 100%;
margin: 0 auto;
margin-bottom: 20px;
}
.loading-msg {
font-size: 20px;
font-weight: 200;
color: #666;
width: 130px;
margin: 0 auto;
}
.loading-msg:after {
overflow: hidden;
display: inline-block;
vertical-align: middle;
padding-bottom: 10px;
-webkit-animation: ellipsis steps(4, end) 900ms infinite;
animation: ellipsis steps(4, end) 900ms infinite;
content: "\2026";
/* ascii code for the ellipsis character */
width: 0px;
}
@keyframes ellipsis {
to {
width: 1.25em;
}
}
@-webkit-keyframes ellipsis {
to {
width: 1.25em;
}
}
#msg-app-loading {
margin-top: 60px;
}
#msg-loading-more {
text-decoration: none;
display: block;
margin-top: 10px;
}
@media only screen and (min-width: 1024px) {
#Gallery {
width: 100%;
margin: 0 auto;
}
}