-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
85 lines (74 loc) · 1.45 KB
/
style.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
body {
min-height: 100vh;
font-size: 14px;
line-height: 1.71429;
font-weight: 400;
letter-spacing: .05em;
color: #151515;
background-color: #ffffff;
-webkit-text-size-adjust: none;
-webkit-font-smoothing: subpixel-antialiased;
margin: 0;
}
.houdini-slider {
width: 100%;
min-height: 100vh;
overflow: hidden;
position: relative;
text-align: center;
}
.houdini-wrapper {
position: relative;
z-index: 0;
display: flex;
align-self: stretch;
align-items: stretch;
width: 100%;
height: auto;
min-height: inherit;
box-sizing: content-box;
transition-property: transform;
}
.houdini-slide {
position: relative;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
width: 100%;
height: 100%;
min-height: 100vh;
white-space: nowrap;
background-position: 50% 50%;
}
.slide-inner {
width: 100%;
color: #fff;
word-wrap: break-word;
}
.container {
max-width: 1200px;
margin-left: auto;
margin-right: auto;
padding: 0 50px;
}
.houdini-prev, .houdini-next {
position: absolute;
z-index: 1;
top: 50%;
transform: translateY(-50%);
color: #fff;
font-size: 30px;
line-height: 1;
background: transparent;
border: none;
cursor: pointer;
vertical-align: middle;
}
.houdini-prev {
left: 20px;
}
.houdini-next {
right: 20px;
}
* { box-sizing: border-box };