-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
75 lines (65 loc) · 1.19 KB
/
Copy pathstyles.css
File metadata and controls
75 lines (65 loc) · 1.19 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
.header {
background: #151515 url("../images/intro-bg.jpg") no-repeat center center;
background-size: cover;
background-attachment: fixed;
}
.header::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
}
.header .text-container {
z-index: 10;
}
.header .roles {
font-family: "lora-regular", serif;
}
.header .social {
bottom: 50px;
}
.about-img {
width: 200px;
}
.project:hover {
transform: scale(1.05);
transition: all 0.5s ease-in-out;
opacity: 0.8;
}
.services {
background: url("../images/bg.jpg") no-repeat center center;
background-size: cover;
background-attachment: fixed;
}
.services::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
}
.services .container {
z-index: 10;
}
@media (max-width: 767px) {
.header .social i {
font-size: 30px;
}
.header .roles {
font-size: 18px !important;
}
.about-content {
flex-direction: column;
}
.stats .stat {
border-right: 0 !important;
margin-bottom: 40px;
border-bottom: var(--bs-dark) solid 1px;
padding-bottom: 20px;
}
}