This repository was archived by the owner on May 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 298
/
Copy pathstyles.module.scss
139 lines (121 loc) · 1.94 KB
/
styles.module.scss
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
@-webkit-keyframes placeHolderShimmer {
0% {
background-position: -468px 0;
}
100% {
background-position: 468px 0;
}
}
@keyframes placeHolderShimmer {
0% {
background-position: -468px 0;
}
100% {
background-position: 468px 0;
}
}
.timelineItem {
background: #fff;
border: 1px solid;
border-color: #e5e6e9 #dfe0e4 #d0d1d5;
border-radius: 3px;
padding: 12px;
margin: 0 auto;
min-height: 200px;
min-width: 300px;
max-width: 472px;
width: 90vw;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.16);
}
.animatedBackground {
animation-duration: 1s;
animation-fill-mode: forwards;
animation-iteration-count: infinite;
animation-name: placeHolderShimmer;
animation-timing-function: linear;
background: #f6f7f8;
background: #eeeeee;
background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
background-size: 800px 104px;
height: 96px;
position: relative;
list-style: none;
li {
background: #fff;
position: absolute;
box-sizing: border-box;
}
}
.headerTop,
.headerBottom,
.subheaderBottom {
top: 0;
left: 0;
right: 0;
height: 10px;
}
.headerRight,
.subheaderRight {
top: 10px;
left: 40px;
height: 8px;
width: 10px;
}
.headerBottom {
top: 18px;
height: 6px;
}
.subheaderRight {
top: 24px;
height: 6px;
}
.headerRight,
.subheaderRight {
width: auto;
left: 300px;
right: 0;
}
.subheaderRight {
left: 230px;
}
.subheaderBottom {
top: 30px;
height: 10px;
}
.contentTop,
.contentSecondLine,
.contentThirdLine,
.contentSecondEnd,
.contentThirdEnd,
.contentDirstEnd {
top: 40px;
left: 0;
right: 0;
height: 6px;
}
.contentTop {
height: 20px;
}
.contentFirstEnd,
.contentSecondEnd,
.contentThirdEnd {
width: auto;
left: 380px;
right: 0;
top: 60px;
height: 8px;
}
.contentSecondLine {
top: 68px;
}
.contentSecondEnd {
left: 420px;
top: 74px;
}
.contentThirdLine {
top: 82px;
}
.contentThirdEnd {
left: 300px;
top: 88px;
}