-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.css
More file actions
78 lines (77 loc) · 1.4 KB
/
custom.css
File metadata and controls
78 lines (77 loc) · 1.4 KB
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
@font-face {
font-family: MaulaBeloved;
src: url(MaulaBeloved.ttf);
}
.c-font{
font-family: MaulaBeloved;
font-size: 25px;
}
.c-banner{
background:linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),url("car_bg.jpg");
background-size: cover;
padding: 50px;
padding-bottom: 100px;
}
.c-banner h1{
font-weight: bold;
}
.c-banner p{
text-transform: uppercase;
line-height: 25px;
}
.c-banner input{
margin: 5px;
padding: 10px;
width: 100%;
border-radius: 5px;
}
.c-banner button{
margin: 5px;
}
.c-card{
margin-top: -50px;
}
.card{
text-align: center;
color: white;
padding: 20px 15px;
margin-bottom: 10px;
border: none;
background: linear-gradient(to right,#fff 50%, #dc3545 50% );
background-size: 200%;
background-position:right ;
transition: .5s ease;
}
.card:hover{
background-position: left ;
color: black;
}
.card i{
font-size: 40px;
padding: 10px;
}
.btn{
transition: transform .6s;
}
.btn:hover{
transform: translate(0px,-8px);
}
.c-success{
background-color: rgb(219, 219, 219);
}
.c-success img{
width: 120px;
border-radius: 50%;
}
footer a{
color: white;
}
footer a:hover{
color: rgb(205, 205, 205);
text-decoration: none;
}
#myTopBtn{
position: fixed;
right: 20px;
bottom: 20px;
}