-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcara1.css
73 lines (62 loc) · 1.05 KB
/
cara1.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: #774c60;
}
.caraimage{
display: flex;
flex-direction: row;
width: 90%;
height: 464px;
margin: auto;
margin-top: 30px;
/* box-shadow: 0px 0px 3px grey; */
/* position: relative; */
overflow: hidden;
}
.caraimage img{
padding: 0px 20px;
border-radius: 30px;
width: 50%;
height: 100%;
/* transition: 1s; */
/* position: absolute; */
}
.caraimage img:hover{
transform: scale(1.01);
}
.carousel {
display: flex;
align-items: center;
justify-content: center;
padding-bottom: 1rem;
}
button{
border-radius: 25px;
width: 2rem;
font-size: 2rem;
height: 3rem;
background-color: grey;
color: white;
border: none;
/* display: flex;
flex-direction:column ; */
cursor: pointer;
}
button:hover,button:focus{
color: grey;
background-color: white;
border: none;
}
button:focus{
border: 1px solid grey;
}
#prev{
margin: 0px 10px;
}
#next{
margin: 0px 10px;
}