-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
171 lines (142 loc) · 2.44 KB
/
index.css
File metadata and controls
171 lines (142 loc) · 2.44 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
* {
font-family: sans-serif;
}
header {
width: 100%;
height: 100vh;
background: url(images/cover0.jpg) no-repeat center bottom;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.navbar-brand {
margin-left: 5%;
font-size: 36px;
}
.nav-item {
margin: 0 15px;
font-weight: 500;
}
.nav-item a:hover {
background-color: rgba(255, 255, 255, 0.3);
-o-transition-duration: 1s;
transition-duration: 1s;
}
.row p {
padding: 0 20%;
}
.cover h1{
letter-spacing: 6px;
font-size: 44px
}
#about-us {
background-color: #282828;
color: white;
padding: 10% 0;
}
.hr-about {
width: 75%;
margin: 0 auto 2em auto;
border: 1px solid rgba(255,255,255,0.7);
}
#about-us img {
width: 350px;
height: 200px;
}
.projects {
padding: 2% 12% 2% 12%;
height: 110vh;
}
.hr-projects {
width: 85%;
border: 1px solid rgba(0,0,0,0.7);
}
.carousel-item {
height: 80vh;
}
.carousel-item > img {
height: 100%
}
.team {
background-color: #282828;
color: white;
padding: 5% 0 5% 0;
}
.hr-team {
width: 75%;
margin: 0 auto 2em auto;
border: 1px solid rgba(255,255,255,0.9);
}
.box-team {
margin: 2% 0 2% 0;
padding: 0 8%;
}
.team img {
width: 100%;
border-radius: 20%;
-webkit-box-shadow: 0 0 5px 2px #fff;
-moz-box-shadow: 0 0 5px 2px #fff;
box-shadow: 0 0 10px 10px #101010;
}
.contact {
padding: 8% 0 8% 0;
}
.contact h3 {
margin-bottom: 5%;
}
.contact-box{
padding: 3% 12%;
}
.contact img {
width: 100%;
opacity: 0.75;
}
footer{
padding: 2% 0 2% 0;
background-color: black;
color: white;
}
@media only screen and (max-width: 725px){
.projects {
height: 80vh;
padding: 2% 20%;
}
.carousel-item {
height: 50vh;
}
.box-team{
font-size: 14px;
}
}
@media only screen and (max-width: 730px) and (min-width: 575px){
.nav-item {
margin: 0;
font-size: 14px;
}
}
@media only screen and (max-width: 480px){
.navbar {
background-color: white !important;
}
content {
font-size: 12px;
}
#about-us img {
width: 100%;
padding: 10% 0%;
}
.projects {
padding:5% 5%;
height: 60vh;
}
.carousel-item {
height: 40vh;
}
.box-team{
font-size: 12px;
}
footer {
font-size: 12px;
}
}