forked from julietteugoh/Buildcon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
123 lines (113 loc) · 2.37 KB
/
Copy pathstyle.css
File metadata and controls
123 lines (113 loc) · 2.37 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
*{
font-family: montserrat;
}
body{
background: f1fbff;
}
.section-padding{
padding: 100px 0;
}
.carousel-item{
height: 100vh;
min-height: 300px;
}
.carousel-caption{
bottom: 220px;
z-index: 2;
}
.carousel-caption h5{
font-size: 45px;
text-transform: uppercase;
letter-spacing: 2px;
margin-top: 25px;
}
.carousel-caption p{
width: 60%;
margin: auto;
font-size: 18px;
line-height: 1.9;
}
.carousel-inner::before {
content: '';
position: absolute;
width: 100%;
height: 100%;
left: 0px;
top: 0px;
background: rgba(0, 0, 0, 0.7) ;
z-index:1;
}
.navbar-nav a{
font-style: 15px;
text-transform: uppercase;
font-weight: 500;
}
.navbar-light .nav-brand{
color: #000;
font-size: 25px;
text-transform: uppercase;
font-weight: 700;
letter-spacing: 2px;
}
.navbar-light .nav-brand:focus,
.navbar-light.nav-brand:hover{
color: #000;
}
.navbar-light .navbar-nav .navbar-link{
color: #000;
}
.w-100{
height: 100vh;
}
.services .card-body i{
font-size: 50px;
}
.team .card-body i{
font-size: 20px;
}
.portfolio .card{
box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.15);
}
.team .card{
box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.15);
}
/*==responsive css==*/
@media only screen and (min-width: 768px) and (max-width: 991px){
.carousel-caption{
bottom: 370px;
}
.carousel-caption p{
width: 100%;
}
.card{
margin-bottom: 30px;
}
.img-are img{
width: 100%;
}
}
@media only screen and (max-width: 767px){
.navbar-nav{
text-align: center;
}
.carousel-caption{
bottom: 125px;
}
.carousel-caption h5{
font-size: 17px;
}
.carousel-caption a{
padding: 10px 15px;
}
.carousel-caption p{
width: 100%;
line-height: 1.6;
font-style: 12px;
}
.about-text{
padding-top: 50px;
}
.card{
margin-bottom: 30%;
}
}