-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle-sheet3.css
211 lines (179 loc) · 2.96 KB
/
style-sheet3.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
208
209
210
211
body{
background-color: black;
background-image: url(dice2.jpg);
background-repeat: no-repeat;
background-size: cover;
margin-top: 0PX;
margin: 0PX;
background-attachment: fixed;
justify-content: center;
align-items: center;
}
.part-home {
padding: 100px;
background-color: black;
}
#imgg {
width:100%;
height:100%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
/*to make border inside image*/
.bg-text {
font-family:Gabriola;
color: Silver;
font-weight: thin ;
position: absolute;
font-size: 50px;
top: 20%;
left: 30%;
transform: translate(-50%, -50%);
z-index:2;
width: 60%;
height: 300px;
padding: 20px;
text-align: center;
}
/* to sure tht text wright inside pic */
.text {
position: relative;
text-align: center;
}
.centered {
position: absolute;
top: 60px;
left: 40px;
transform: translate(-10%);
color: darkGray;
}
/*--------------------------------------------------*/
/* orgnaize pic*/
.pic ul{
margin:0px 55px 0px 145px;
padding:0;
display:flex;
}
.pic ul li{
list-style: none;
margin: 0 8px;
transition:0.5;
}
.pic ul li a{
margin-top: 15px;
display:block;
position:relative;
text-decoration: none;
padding:5px;
font-size: 15px;
font-family:papyrus;
color: DarkGray;
text-transform:uppercase;
transition:0.5s;
}
.pic ul:hover li a{
transform: scale(1.2);
opacity:.2;
filter:blur(5px);
}
.pic ul li a:hover{
transform:scale(1.1);
opacity:1;
filter:blur(0);
}
.pic ul li a:before{
content:'';
position: absolute;
top:0;
left:0;
width:100%;
height:100%;
transition:transform 0.5s;
transform-origin: right;
transform:scalex(0);
z-index:-1;
}
.pic ul li a:hover:before{
transition:transform 0.5s;
transform-origin:left;
transform:scalex(1);
}
.bodyy{
background-color:black;
border: 3px dashed LIGHTSALMON ;
padding:50px;
margin: 50px 40px 0px 140px;
width:70%;
height:70%;}
.imgStory{
float: right;
width:45%;
position: relative;
margin-top:3px;
margin-right: 0px;
margin-left:20px;}
.theStory {
font-size:30px;
color:LIGHTGRAY;
margin:15px;
text-align: right;
padding:1px;}
#one{
font-size:50px;
color:LIGHTSALMON;
}
.footer-min-div{
width:100%;
height:200px;
margin:auto;
padding: 20px 0px;
}
.footer-icons{
width:100%;
height:auto;
margin:auto;
}
.footer-icons ul{
margin: 0px;
padding: 0px;
text-align:center;
}
.footer-icons ul li{
display:inline-block;
width: 50px;
height: 50px;
margin: 30px 10px;
border-radius: 100%;
background:CORAL;
}
.footer-icons ul li a{
color:black;
font-size:25px;
display:block;
}
.footer-icons ul li a i{
line-height: 50px;
}
.footer-menu{
width: 100%;
height: auto;
margin: auto;
margin-top: 25px;
}
.footer-menu ul{
margin: 0px;
padding: 0px;
text-align: center;
}
.footer-menu ul li{
display: inline-block;
margin: 0px 20px;
}
.footer-menu ul li a{
font-size: 20px;
font-family:Segoe Script ;
font-weight: 600;
color:white;
text-transform: uppercase;
}