-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css.bak
164 lines (144 loc) · 2.6 KB
/
style.css.bak
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
154
155
156
157
158
159
160
161
162
163
164
html {
font-family: sans-serif;
line-height: 1.15;
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
margin: 0;
font-family: "Roboto", sans-serif;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #6c757d;
text-align: left;
background-color: #ffffff;
}
.btn {
padding: 10px 25px;
border-radius: 100px;
}
.btn-social {
width: 45px;
height: 45px;
padding-left: 0;
padding-right: 0;
text-align: center;
border-radius: 45px;
}
.form-control {
border-radius: 25px;
}
/* ================ Navigation Menu ====================*/
.navbar-light {
display: none;
}
.navbar-light .navbar-nav .nav-link {
padding: 25px 10px;
color: #343a40;
font-weight: 500;
outline: none;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
color: #0BCEAF;
}
@media (max-width: 991.98px) {
.navbar-light .navbar-nav .nav-link {
padding: 10px 0;
}
}
.about-img{
margin-left: -100px;
right: -65px;
}
.display-1{
font-size: 160px;
font-weight: 1000;
}
@media (max-width: 700px) {
.about-img{
margin-left: 20px;
right: 0px;
top: 30px;
}
}
.scroll-to-bottom {
position: fixed;
width: 20px;
left: calc(50% - 10px);
bottom: 30px;
z-index: 11;
animation: action 1s infinite alternate;
}
@keyframes action {
0% {
transform: translateY(0);
}
100% {
transform: translateY(-15px);
}
}
/*====================== customer ratings ==================*/
* {
box-sizing: border-box;
}
.ratings{
font-family: Arial;
margin: 0 auto;
max-width: 800px;
padding: 20px;
}
.heading {
font-size: 25px;
margin-right: 25px;
}
.fa {
font-size: 25px;
}
.checked {
color: orange;
}
/* Three column layout */
.side {
float: left;
width: 15%;
margin-top:10px;
}
.middle {
margin-top:10px;
float: left;
width: 70%;
}
/* Place text to the right */
.right {
text-align: right;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
/* The bar container */
.bar-container {
width: 100%;
background-color: #f1f1f1;
text-align: center;
color: white;
}
/* Individual bars */
.bar-5 {width: 90%; height: 18px; background-color: #04AA6D;}
.bar-4 {width: 75%; height: 18px; background-color: #2196F3;}
.bar-3 {width: 65%; height: 18px; background-color: #00bcd4;}
.bar-2 {width: 80%; height: 18px; background-color: #ff9800;}
.bar-1 {width: 95%; height: 18px; background-color: #f44336;}
/* Responsive layout - make the columns stack on top of each other instead of next to each other */
@media (max-width: 400px) {
.side, .middle {
width: 100%;
}
.right {
display: none;
}
}