-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
112 lines (88 loc) · 1.86 KB
/
style.css
File metadata and controls
112 lines (88 loc) · 1.86 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
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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
html,
body {
height: 100%;
width: 100%;
}
/* ----------hearder------------ */
.head_section {
height: 100px;
display: flex;
align-items: center;
font-family: sans-serif;
}
.sitename {
font-size: 30px;
font-weight: bolder;
}
/* ------------main-------------- */
.bg-img {
height: 100vh;
background: linear-gradient(rgba(0, 0, 0, 0.694), rgba(0, 0, 0, 0.708), rgba(0, 0, 0, 0.717)), url(image/hero-bg.jpg);
background-size: cover;
background-position: 50% 40%;
background-repeat: no-repeat;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.clients_section {
height: auto;
padding: 60px 0px;
/* background-color: red; */
}
.about_bg_section {
margin: 80px 0px;
height: auto;
padding: 80px 0px;
background-color: #1b1b1b;
transform: skewy(-3deg);
}
.about_main_section {
height: 80%;
/* background-color: #1b1b1b; */
/* padding-top: 60px; */
transform: skewy(3deg);
}
/* ---------stats section--------- */
.stats_items {
border-radius: 5px;
position: relative;
margin: 20px 15px;
box-shadow: 0px 0px 10px 0px rgba(128, 128, 128, 0.562);
padding: 30px 0px;
}
.starts_img {
width: 50px;
height: 50px;
position: absolute;
top: -25px;
left: 50%;
transform: translateX(-50%);
border: 2px solid whitesmoke;
border-radius: 50%;
background-color: white;
padding: 10px;
}
.stats_items h2 {
font-size: 40px;
font-weight: bolder;
/* margin-top: 20px; */
}
.stats_items span {
font-size: 20px;
font-weight: 500;
color: gray;
}
/* ---------pill section--------- */
.pill_section {
height: auto;
}
/* ---------portfolio section--------- */
@media (max-width:576px) {
#pills-tab .nav-link {
padding: 6px 8px;
}
}