-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsplit.css
135 lines (126 loc) · 2.6 KB
/
split.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
body{
margin: 0;
padding: 0;
/background-color: #2f2f2f;
}
.bg{
position: absolute;
/background-image: linear-gradient(to bottom, #02334f 50%, #0e9c92, #fff);
/background-image: url(bg8.jpg);
/background-size: cover;
height: 650px;
filter: blur(3px);
z-index: -1;
}
#mains{
height: 600px;
width: 900px;
/background-image: url(bg8.jpg);
/background-size: cover;
position: relative;
left: 250px;
top: 30px;
filter: blur(0px);
}
#d1{
height: 300px;
width: 100px;
box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.5);
position: absolute;
top: 150px;
left: 115px;
background: url(img4.jpg);
background-size: 400px 532px;
background-position: -0px -150px;
z-index: 2;
filter: blur(0);
}
#d2{
height: 475px;
width: 100px;
box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.5);
position: absolute;
top: 80px;
left: 215px;
background: url(img4.jpg);
background-size: 400px 532px;
background-position: -100px -70px;
z-index: 1;
}
#d3{
margin-top: 20px;
height: 600px;
width: 100px;
box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.5);
position: absolute;
top: 0px;
left: 315px;
background: url(img4.jpg);
background-size: 400px 532px;
background-position: -200px 0px;
z-index: 3;
}
#d4{
height: 500px;
width: 100px;
box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.5);
position: absolute;
top: 30px;
left: 415px;
background: url(img4.jpg);
background-size: 400px 532px;
background-position: -300px 10px;
z-index: 1;
}
#content{
height: auto;
width: auto;
border-right: 3px solid white;
text-align: right;
font-family: fantasy;
font-size: 45px;
letter-spacing: 5px;
color: white;
position: absolute;
top: 500px;
right: 1100px;
z-index: 99;
}
@media screen and (max-width: 600px) {
#d1{
height: 150px;
width: 50px;
top: 150px;
left: 20px;
background-size: 200px 266px;
background-repeat:no-repeat;
background-position: -0px -75px;
}
#d2{
height: 237px;
width: 50px;
top: 100px;
left: 70px;
background-size: 200px 266px;
background-repeat:no-repeat;
background-position: -50px -35px;
}
#d3{
height: 300px;
width: 50px;
top: 45px;
left: 120px;
background-size: 200px 266px;
background-repeat:no-repeat;
background-position: -100px 0px;
}
#d4{
height: 150px;
width: 50px;
top: 80px;
left: 170px;
background-size: 200px 266px;
background-repeat:no-repeat;
background-position: -150px 5px;
}
}