-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
107 lines (83 loc) · 1.48 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
@import url("https://fonts.googleapis.com/css?family=Roboto&display=swap");
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
height: 100vh;
font-family: "Roboto", sans-serif;
}
.container {
position: relative;
width: 100vw;
height: 100vh;
overflow: hidden;
}
.sidebar {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 35%;
transition: transform 0.5s ease-in-out;
}
.sidebar > div {
height: 100%;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: #fff;
}
.sidebar h1 {
margin-bottom: 10px;
margin-top: -30px;
font-size: 40px;
}
.main-slide {
position: absolute;
top: 0;
left: 35%;
width: 65%;
height: 100%;
transition: transform 0.5s ease-in-out;
}
.main-slide > div {
height: 100%;
width: 100%;
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
}
button {
padding: 15px;
border: none;
cursor: pointer;
font-size: 16px;
color: #aaa;
background-color: #fff;
}
button:hover {
color: #222;
}
button:focus {
outline: none;
}
.container .controls button {
position: absolute;
left: 35%;
top: 50%;
z-index: 100;
}
.container .controls .down-button {
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
transform: translateX(-100%);
}
.container .controls .up-button {
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
transform: translateY(-100%);
}