-
Notifications
You must be signed in to change notification settings - Fork 0
/
gallery.css
207 lines (175 loc) · 4.2 KB
/
gallery.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
* {
box-sizing: border-box;
}
body{
margin: 2%;
background-image:url("bg.jpg");
background-repeat: repeat-y;
background-size:100%;
}
#image{
color: rgb(92, 153, 140);
font-family: 'Bellota Text';
font-weight: 200;
text-align: center;
}
.flip-card1 {
padding-top: 20px;
background-color: transparent;
width: 850px;
height: 400px;
border: 0.5px solid #050505;
perspective: 1000px;
}
.flip-card-inner1 {
position: relative;
width: 100%;
height: 100%;
text-align: center;
transition: transform 1s;
transform-style: preserve-3d;
}
.flip-card1:hover .flip-card-inner1 {
transform: rotateX(180deg);
}
.flip-card-front1, .flip-card-back1 {
position: absolute;
width: 100%;
height: 100%;
backface-visibility: hidden;
}
.flip-card-front1 {
background-image: url("painting.jpg");
background-repeat: no-repeat;
background-size: cover;
font-size: 75px;
font-weight: 150;
font-family: 'Caveat', cursive;
text-align: center;
line-height: 400px;
color: rgb(255, 255, 255);
}
.flip-card-back1 {
background: linear-gradient(25deg, #f7b2c3 25%,#fdd3ab 50%);
color: white;
font-weight: 150;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 30px;
line-height: 300px;
transform: rotateX(180deg);
}
.flip-card2 {
float: right;
padding-top: 60px;
background-color: transparent;
width: 700px;
height: 400px;
border: 0.5px solid #050505;
perspective: 1000px;
}
.flip-card-inner2 {
position: relative;
width: 100%;
height: 100%;
text-align: center;
transition: transform 1s;
transform-style: preserve-3d;
}
.flip-card2:hover .flip-card-inner2 {
transform: rotateX(180deg);
}
.flip-card-front2, .flip-card-back2 {
position: absolute;
width: 100%;
height: 100%;
backface-visibility: hidden;
}
.flip-card-front2 {
background-image: url("scribble.jpg");
background-repeat: no-repeat;
background-size: cover;
font-size: 70px;
font-weight: 150;
font-family: 'Josefin Sans', sans-serif;
text-align: center;
line-height: 200px;
color: rgb(53, 52, 52);
}
.flip-card-back2{
background: linear-gradient(to left, #dbd9da 35%,#949494 50%);
color: rgb(34, 33, 33);
font-weight: 150;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 30px;
line-height: 300px;
transform: rotateX(180deg);
}
.flip-card3{
clear: right;
padding-top: 80px;
background-color: transparent;
width: 1000px;
height: 450px;
border: 0.5px solid #050505;
perspective: 1000px;
}
.flip-card-inner3 {
position: relative;
width: 100%;
height: 100%;
text-align: center;
transition: transform 1s;
transform-style: preserve-3d;
}
.flip-card3:hover .flip-card-inner3 {
transform: rotateX(180deg);
}
.flip-card-front3, .flip-card-back3 {
position: absolute;
width: 100%;
height: 100%;
backface-visibility: hidden;
}
.flip-card-front3 {
background-image: url("others.jpg");
background-repeat: no-repeat;
background-size: cover;
font-size: 60px;
font-weight: 150;
font-family: 'Caveat', cursive;
font-family: 'Mansalva', cursive;
text-align: left;
padding-left:335px;
line-height: 250px;
color: rgb(212, 211, 211);
}
.flip-card-back3{
background: linear-gradient(30deg, #b2f7e2 35%,#fdabcd 50%);
color: white;
font-weight: 150;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 30px;
line-height: 300px;
transform: rotateX(180deg);
}
#by{
font-weight: 350;
font-family: 'Bellota Text';
color:rgba(122, 122, 122, 0.979);
margin-top: 20px;
font-size: 15px;
}
#head{
background: linear-gradient(to right, #f8aada 35%,#f8be88 50%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-family: 'Comfortaa';
padding-left: 10px;
line-height:75px;
}
.ig:hover {
transform: scale(1.2);
}
.mail:hover {
transform: scale(1.2);
}