-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
65 lines (58 loc) · 1.2 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
html,
body {
position: relative;
height: 100%;
}
body {
background-image: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
font-family: Poppins;
font-size: 14px;
display: flex;
align-items: center;
justify-content: center;
margin: 0;
padding: 0;
}
.swiper {
width: 700px;
padding-top: 50px;
padding-bottom: 50px;
background: rgba(255, 255, 255, 0.8);
border-radius: 10px;
backdrop-filter: blur(14px);
}
.swiper-slide {
background-position: center;
background-size: cover;
width: 300px;
height: 300px;
margin: 10px;
border-radius: 10px;
background-color: rgb(31 41 55);
display: flex;
align-items: center;
justify-content: center;
transition: .3s linear;
}
.swiper-slide:hover{
transform: scale(1.05) rotate(2deg);
}
.swiper-slide .container h1{
background-color: rgb(12, 19, 29);
padding: 10px;
width: 150px;
height: 150px;
display: flex;
align-items: center;
justify-content: center;
color: rgb(255, 111, 123);
border-radius: 10px;
font-size: 70px;
}
.swiper-button-prev,
.swiper-button-next{
color: rgb(255, 111, 123);
}
:root {
--swiper-theme-color: rgb(255, 111, 123);
}