-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
97 lines (70 loc) · 1.31 KB
/
style.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
*{
font-family: "Poppins", sans-serif;
}
html{
scroll-behavior:auto !important
}
body{
background-color: rgb(46, 49, 54);
}
.header {
background-color: rgb(0, 12, 82);
}
.header h3{
color: rgb(196, 196, 196);
}
#iconDiv {
background-color: rgb(11, 70, 118);
max-width:90%;
}
#detailsDiv {
background-color: rgb(9, 30, 61); /* Detaylar arka plan rengi belirlendi */
max-width:90%;
}
#detailImg {
max-height:80vh;
}
#carModel{
color:rgb(180, 175, 175) !important;
font-weight: 550;
}
.car-card {
cursor: pointer;
overflow:hidden;
}
.car-card:hover #carModel{
color: rgb(255, 255, 255) !important;
font-weight: bold;
transition: color ease-in 0.5s;
}
/*DEVAMINI İNCELE*/
.car-model {
color: rgb(165, 165, 165);
}
.car-model:hover {
color: rgb(211, 207, 207) !important;
}
#textDiv {
min-width: 15rem;
font-weight: 550;
}
#textDiv p{
color: rgb(112, 126, 140);
}
#textDiv span{
color: rgb(233, 237, 241);
}
i {
font-weight: 600;
cursor: pointer;
color: rgb(165, 165, 165) !important;
}
i:hover {
color: rgb(211, 207, 207) !important;
transition: color;
}
#inputFilter{
background-color: rgb(228, 228, 228);
width: 210px;
border-radius: 7px;
}