-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresponsive.css
More file actions
128 lines (97 loc) · 2.12 KB
/
responsive.css
File metadata and controls
128 lines (97 loc) · 2.12 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/* mobile tablet */
@media (max-width: 1023px) {
.header .navbar {
position: fixed;
top: 0;
left: -100%;
height: 100vh;
width: 100%;
background: #111;
text-align: center;
padding-top: 45px;
transition: all 0.3s ease;
}
.header .navbar.active {
left: 0;
}
@keyframes animationNav {
to {
opacity: 0.3;
}
from {
opacity: 1;
}
}
.header .navbar .nav-items li {
display: block;
}
.header .navbar .nav-items li a{
display: inline-block;
margin: 30px 0;
font-size: 2rem;
}
.header .header-wrap {
display: flex;
align-items: center;
}
.header .header-menu {
z-index: 9999;
display: block;
}
.header .nav-items li .nav__item-link:hover::before {
background: #2193b0;
}
.sticky .navbar .nav-items li .nav__item-link:hover {
animation: Opacity .3s ease forwards ;
}
.header .header-menu .menu-bars.active::before {
content: "\f00d";
}
.home .home-slider {
height: 0%;
}
/*
.home .home-slider .name-job {
display: block;
} */
/* about me */
.about-me .about-content .about__content-img img {
width: 300px;
height: 300px;
}
.height-block {
display: none;
}
/* teams */
.owl-dot {
margin: 0 10px;
}
.section .title::after {
bottom: -14px;
}
/*
.about-content .about__content-text .text .name-job-2 {
display: block;
} */
}
/* tablet */
@media(min-width: 740px) and (max-width: 1023px) {
}
/* moblie */
@media (max-width: 739px) {
.about-me .about-content .about__content-img img {
width: 100%;
height: 300px;
}
.about-content .about__content-text .text {
margin-top: 30px;
text-align: center;
}
.hobbies .title::before {
bottom: -22px;
}
.hobbies .title::after {
bottom: -40px;
padding: 0;
}
}