forked from ansh10tripathi/APEX-TRAVELS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBike .css
More file actions
58 lines (54 loc) · 987 Bytes
/
Copy pathBike .css
File metadata and controls
58 lines (54 loc) · 987 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
body{
background-color: black;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
#nav{
text-align: center;
background-color:red;
color:black;
border-radius: 25px;
}
#nav:hover{
box-shadow:5px 10px 40px red ;
}
.outer{
width: 300px;
height: 350px;
text-align: center;
border: 2px solid black;
margin: 10px;
display: inline-block;
border-radius: 5px;
box-shadow: 2px 4px 10px black;
transition: 2s;
margin-right: 50px;
}
.inner{
padding:0 2px 0 2px ;
color: white;
}
.price{
color: aliceblue;
}
button{
background-color:aqua ;
color:white ;
border: 2px solid black;
border-radius: 10px;
}
button:hover{
background-color: blue;
color: aliceblue;
}
img{
width: 100%;
border-radius: 5px 5px 0 0;
}
.outer:hover{
box-shadow: 5px 10px 40px red;
}
a{
text-decoration: none;
}