-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyel.css
113 lines (112 loc) · 2.12 KB
/
styel.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
text-decoration: none;
list-style: none;
}
nav{
position: fixed;
background-color: #1b1b1b;
padding: 10px 0;
width: 100%;
z-index: 12;
}
.menu{
min-width: 1250px;
padding: 0 20px;
margin: auto;
display: flex;
align-items: center;
justify-content: space-between;
}
.logo a{
font-size: 35px;
color: #fff;
font-weight: 600;
}
.menu ul{
display: inline-flex;
}
.menu ul li{
margin: 7px;
}
.menu ul li a{
color: #fff;
font-size: 18px;
font-weight: 500;
padding: 8px 15px;
border-radius: 5px;
transition: all .3s ease;
}
.menu ul li a:hover{
background-color: #fff;
color: #1b1b1b;
}
.img{
background: url('img/repairs-03-0.jpg') no-repeat;
height: 150vh;
width: 100%;
background-position: center;
background-size: cover;
position: relative;
}
.img::before{
content: '';
position: absolute;
height: 100%;
width: 100%;
background: rgba(0, 0, 0, .4);
}
.center{
position: absolute;
top: 70%;
/* left: 50%; */
width: 100%;
transform: translate(-50% , -50% , );
background-color: rgba(0, 0, 0, .1);
padding: 0 20px;
text-align: center;
}
.center .title{
color: #fff;
font-size: 55px;
font-weight: 500;
padding: 10px 0;
}
.center .sub_title{
color: #fff;
font-size: 45px;
font-weight: 500;
padding: 10px 0;
}
.center .btns{
margin: 20px 0;
padding: 10px 0;
}
.center .btns button{
width: 25%;
height: 100px;
margin: 0 10px;
border: 2px solid #fff;
border-radius: 10px;
font-size: 30px;
font-weight: 500;
outline: none;
cursor: pointer;
transition: all .3s ease;
}
.center .btns button:first-child{
color: #fff;
background-color: #1b1b1b;
}
.center .btns button:first-child:hover{
color: #1b1b1b;
background-color: #fff;
}
.center .btns button:hover{
color: #fff;
background-color: #1b1b1b;
}