-
Notifications
You must be signed in to change notification settings - Fork 0
/
bikeservice.css
90 lines (81 loc) · 1.91 KB
/
bikeservice.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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');
.cards {
margin: 0 auto;
max-width: 1000px;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
grid-auto-rows: auto;
gap: 20px;
font-family: sans-serif;
padding-top: 30px;
}
body{
background: url('/vehicle_service/images/bike_service_background.jpg');
}
.cards * {
box-sizing: border-box;
}
.card__image {
width: 100%;
height: 150px;
object-fit: cover;
display: block;
border-top: 2px solid #333333;
border-right: 2px solid #333333;
border-left: 2px solid #333333;
}
.card__content {
line-height: 1.5;
font-size: 0.9em;
padding: 15px;
background: #fafafa;
border-right: 2px solid #333333;
border-left: 2px solid #333333;
}
.card__content > p:first-of-type {
margin-top: 0;
}
.card__content > p:last-of-type {
margin-bottom: 0;
}
.btn {
font-family: 'Baloo Bhai', cursive;
margin: 0px 9px;
background-color: black;
color: white;
padding: 4px 14px;
border: 2px solid grey;
border-radius: 10px;
font-size: 20px;
cursor: pointer;
}
.down {
position:fixed;
right: 250px;
bottom: 43px;
display: inline-block;
/* border: 2px solid yellow; */
}
.card__info {
padding: 15px;
display: flex;
justify-content: space-between;
align-items: center;
color: #555555;
background: #eeeeee;
font-size: 0.8em;
border-bottom: 2px solid #333333;
border-right: 2px solid #333333;
border-left: 2px solid #333333;
}
.card__info i {
font-size: 0.9em;
margin-right: 8px;
}
.card__link {
color: #64968c;
text-decoration: none;
}
.card__link:hover {
text-decoration: underline;
}