-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
153 lines (114 loc) · 2 KB
/
styles.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
:root {
--blue: #106eea;
--gray: #555252;
--bg: #f1f6fe;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
li {
list-style: none;
}
a {
text-decoration: none;
}
.navbar-brand,
.btn {
letter-spacing: 1px;
}
.nav-link:hover,
.active{
color: var(--blue) !important;
border-bottom: 2px solid var(--blue);
padding-bottom: 5px;
}
p {
color: var(--gray);
margin-bottom: 0 !important;
}
.rangi {
color: var(--blue);
}
.hero {
background-image: linear-gradient(rgba(255, 245, 245, 0.7), rgba(236, 233, 233, 0.5)), url(images/hero-bg.jpg);
background-position: center;
background-size: cover;
height: 70vh;
margin-top: 7.5rem;
}
.banner-content {
padding-top: 11rem;
}
.banner-content h1 {
font-size: 3rem;
}
.about {
background-color: var(--bg);
}
.mini-title {
background-color: #c3dddbb2;
width: 100px;
}
.kachalo span {
height: 80px;
}
.about-boxs {
background-color: var(--bg);
}
.about-boxs-icon {
top: -38px;
border: 6px solid white;
}
.services-icons {
background-color: var(--bg);
}
.contact-address {
border: 3px dotted var(--blue);
}
textarea {
resize: none !important;
height: 160px;
}
input {
height: 3rem;
color: gray !important;
}
.footer {
background-color: var(--bg);
}
.footer li p {
border-bottom: 1px dotted transparent;
}
.footer li p:hover {
color: var(--blue);
border-bottom: 1px dotted var(--blue);
}
@media(max-width:768px) {
.hero {
margin-top: 4rem;
height: 80vh;
}
.banner-content {
padding-top: 8rem !important;
}
.banner-content h1 {
font-size: 2.8rem;
}
}
@media(max-width:480px) {
.hero {
margin-top: 2rem;
}
.banner-content h1 {
font-size: 2.5rem;
}
.kachalo h4 {
font-size: 20px !important;
}
.input-group button{
border-top-left-radius: 5px !important;
border-bottom-left-radius: 5px !important;
}
}