-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyleWeb.css
More file actions
188 lines (147 loc) · 3.01 KB
/
styleWeb.css
File metadata and controls
188 lines (147 loc) · 3.01 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
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Georgia, serif;
}
body{
position: relative;
}
.carousel-item img{
width: 100%;
height: 93vh;
}
.carousel-item h1{
margin-bottom: 100px;
margin-left: 770px;
font-size: 90px;
}
.about_img{
min-width: 100%;
max-height: 280px;
}
.services img{
width: 100%;
height: 100%;
}
.logo{
width: 24%;
height: 5vh;
}
.offer_style{
background: #a6dcef;
}
.nav-item{
padding-left: 15px;
}
.nav-item:hover{
background-color: rgba(226, 238, 238, 0.648);
}
.waviy {
position: relative;
-webkit-box-reflect: below -20px linear-gradient(transparent, rgba(0,0,0,.2));
font-size: 60px;
}
.waviy span {
font-family: 'Alfa Slab One', cursive;
position: relative;
display: inline-block;
color: #fff;
/* text-transform: uppercase; */
animation: waviy 1s infinite;
animation-delay: calc(.1s * var(--i));
}
@keyframes waviy {
0%,40%,100% {
transform: translateY(0)
}
20% {
transform: translateY(-20px)
}
}
/* Team css */
.section-header>span{
align-items: center;
color: blue;
display: flex;
font-family:Georgia, serif;
font-size: 50px;
font-weight: 600;
justify-content: center;
}
.section-container{
display: flex;
flex-wrap: wrap;
margin-top: 100px;
}
.section-container .column{
flex: 0 0 auto;
width: 50%;
}
.section-container .column.image{
background-position: center;
width: 50%;
}
.section-container .column.content{
padding: 40px 50px;
}
.content-container{
margin-bottom: 100px;
margin-top: -550px;
}
.content-container h2{
margin-left: 881px;
font-size: 50px;
}
.team-description{
color:black ;
font-size:16px ;
line-height:18px ;
padding-bottom:15px ;
font-family:Georgia, serif ;
}
.team p{
margin-top: 0;
margin-bottom: 0em;
margin-left: 877px;
}
.p_sorting{
font-size: 30px;
margin-left:42rem ;
margin-bottom: 15rem;
}
.email{
margin-left: 880px;
}
.profile-description-container{
flex-direction:column;
line-height: 0;
padding-left: 20px;
padding-top:9px;
}
.profile-team{
color:black ;
font-family:Georgia, serif;
font-size:25px ;
font-weight: 600;
}
.footer-con{
background-color:rgba(0, 0, 0, 0.13);
height: 40px;
font-size: 15px;
margin-top: 10px;
padding: 6px;
}
/* responsive css code */
/* // X-Small devices (portrait phones, less than 576px)
// No media query for `xs` since this is the default in Bootstrap */
/* /* // Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }
// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { ... }
// Large devices (desktops, 992px and up)
@media (min-width: 992px) { ... }
/* // X-Large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }
// XX-Large devices (larger desktops, 1400px and up)
@media (min-width: 1400px) { ... } */