-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathslider1.css
More file actions
42 lines (40 loc) · 841 Bytes
/
Copy pathslider1.css
File metadata and controls
42 lines (40 loc) · 841 Bytes
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
*{
margin: 0;
padding:0;
box-sizing: border-box;
}
body{
background-color: yellow;
}
.box{
width:60%;
height:70vh;
background: url("C:/Users/rajeev kumar/OneDrive/Desktop/projects/photo/3.jpg") center/cover fixed no-repeat;
border:0.5rem solid #fff700;
border-radius:8px;
position: relative;
margin:4rem auto;
box-shadow:10px 10px 35px rgba(0,0,0,0.6);
}
.btn-left{
position:absolute;
top:50%;
left:0;
background-color: #3b117e;
font-size: 1.5rem;
color:#fff;
transform:translate(-50%,-50%);
border:0.2rem solid #3cbff8;
padding:15px;
}
.btn-right{
position:absolute;
top:50%;
right:0;
background-color: #3b117e;
font-size: 1.5rem;
color:#fff;
transform:translate(50%,-50%);
border:0.2rem solid #3cbff8;
padding:15px;
}