-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
111 lines (91 loc) · 1.58 KB
/
index.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
109
110
111
@import url('../../fonts/Open_Sans/Open_Sans.css');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
background-color: #121212;
}
h1 {
color: #00f6f6;
font-family: 'Open Sans', sans-serif;
font-size: 3rem;
text-align: center;
}
body {
height: 100vh;
display: flex;
flex-direction: column;
row-gap: 3rem;
justify-content: center;
}
main > div {
display: flex;
align-items: center;
}
.sliding-container {
height: 360px;
width: 480px;
overflow: hidden;
}
.slider {
display: flex;
transition: transform 1s;
}
svg {
fill: #00f6f6;
}
.arrow {
border: none;
background-color: transparent;
padding: 0.6rem 1rem 0.5rem 1rem;
width: fit-content;
border-radius: 100%;
cursor: pointer;
height: fit-content;
}
.arrow:hover {
background-color: rgba(0, 246, 246, 0.69);
}
.arrow:hover > svg {
fill: white;
}
.sliding {
position: relative;
background: linear-gradient(0deg, #00000088 30%, #ffffff44 100%);
}
*:after {
font-size: 2rem;
color: #f1f2f3;
font-family: 'Open Sans', sans-serif;
position: absolute;
left: 20px;
bottom: 0;
transform: rotate(-90deg);
transform-origin: left;
}
.sliding:nth-of-type(1):after {
content: 'Open Fields';
}
.sliding:nth-of-type(2):after {
content: 'City Skyscrapers';
}
.sliding:nth-of-type(3):after {
content: 'Plants';
}
.sliding:nth-of-type(4):after {
content: 'Architecture Papers';
}
.sliding:nth-of-type(5):after {
content: 'Misty Mountains';
}
img {
position: relative;
z-index: -1;
}
@media only screen and (min-width: 650px) {
main {
margin: 0 auto;
}
}