-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
126 lines (117 loc) · 2.56 KB
/
style.css
File metadata and controls
126 lines (117 loc) · 2.56 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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/*written by mohamed abdelnasser*/
*{
padding: 0;
margin: 0;
box-sizing: border-box;
text-decoration: none;
list-style: none;
font-family: "Poppins", sans-serif;
}
body {
display: flex;
height: 100vh;
justify-content: center;
overflow: hidden;
align-items: center;
background-color: rgb(39, 50, 41);
background: linear-gradient(to top, white, rgb(80, 80, 190));
}
:root{
--swiper-theme-color: #666767 !important;
}
.swiper {
width: 400px;
height: 400px;
-webkit-box-shadow: 1px 10px 24px 0px rgba(0, 0, 0, 0.75);
-moz-box-shadow: 1px 10px 24px 0px rgba(0, 0, 0, 0.75);
box-shadow: 1px 10px 24px 0px rgba(0, 0, 0, 0.75);
border-radius: 20px;
}
.swiper-slide {
border-radius: 20px;
}
.container {
width: 400px;
height: 400px;
border-radius: 20px;
}
.container img {
width: 100%;
height: 100%;
border-radius: 20px;
}
.swiper-pagination {
position: relative;
bottom: -50px !important;
}
.swiper-pagination-bullet {
width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 20px)) !important;
border-radius: var(--swiper-pagination-bullet-border-radius, 10%) !important;
}
.title {
position: absolute;
left: 50%;
transform: translate(-50%,0);
top: 15vh;
}
.title h3 {
font-size: 50px;
text-transform: uppercase;
color: rgb(187, 191, 237);
text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.6);
}
.info {
position: absolute;
left: 10px;
bottom: 10px;
}
.info p {
color: rgb(61, 61, 164);
font-size: 1.2rem;
}
.icons {
position: absolute;
right: 10px;
bottom: 10px;
}
.icons i {
font-size: 2.5rem;
cursor: pointer;
color: rgb(61, 61, 164);
transition: .3s ease-out;
}
.icons i:hover {
color: rgba(61, 61, 164, 0.362)
}
.btns {
display: flex;
position: relative;
top: 100px;
align-items: center;
justify-content: center;
}
.btns > * {
--swiper-theme-color: #d6d7d7 !important;
background-color: rgba(61, 61, 164, 0.362);
padding: 30px;
border-radius: 50%;
transition: .3s ease-out;
}
.btns > *:hover{
--swiper-theme-color: #3f4040 !important;
background-color: rgba(61, 61, 164, 0.227);
}
.btns > *:active{
background-color: rgba(61, 61, 164, 0.038);
}
@media screen and (max-width:1226px) {
.title h3{
font-size: 20px;
}
.swiper {
scale: .7;
}
.info p {
font-size: 10px;
}
}