-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (74 loc) · 1.26 KB
/
Copy pathstyle.css
File metadata and controls
86 lines (74 loc) · 1.26 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
/* bespoke-progress styles */
.bespoke-progress-parent {
position: absolute;
top: 270px;
bottom: 0;
left: 0;
right: 0;
}
.bespoke-progress-bar {
-webkit-transition: width .6s ease;
-moz-transition: width .6s ease;
-ms-transition: width .6s ease;
-o-transition: width .6s ease;
transition: width .6s ease;
position: absolute;
z-index: 1;
height: 100%;
background: #0089f3;
}
/* other styles */
body {
font-family: helvetica, arial, sans-serif;
font-size: 16px;
line-height: 28px;
}
* {
box-sizing: border-box;
-moz-box-sizing: border-box;
margin: 0;
padding: 0;
color: #303030;
}
h1 {
height: 25px;
width: 640px;
position: absolute;
z-index: 2;
top: 100px;
left: 10%;
font-size: 32px;
letter-spacing: -1px;
}
section {
display: none;
}
.bespoke-parent {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
.bespoke-slide {
width: 640px;
height: 480px;
position: absolute;
z-index: 2;
top: 150px;
left: 10%;
}
section.bespoke-slide {
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-ms-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
display: block;
}
.bespoke-inactive {
opacity: 0;
}
.bespoke-active {
opacity: 1;
}