-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
80 lines (66 loc) · 1.01 KB
/
style.css
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
.brands {
background-color: #edfaff;
}
#myBtn {
display: none;
position: fixed;
bottom: 40px;
right: 40px;
z-index: 99;
cursor: pointer;
border-radius: 50%;
}
#nav li {
margin: 0 10px;
}
#largeh1 {
font-size: 72;
font-weight: bold;
}
.largeh6 {
font-size: 180;
font-weight: 100;
line-height: 6rem;
}
.navbar-brand img {
margin-right: 15px;
}
#projects .modal-img:hover {
cursor: pointer;
opacity: 0.3;
transition: opacity 0.3s ease;
}
.row {
margin-bottom: 15px;
}
#contact img {
margin-bottom: 10px;
}
#footer .copyright {
padding: 11px 0 1px 0;
margin-bottom: 0 !important;
}
.shadow-box {
-webkit-box-shadow: 1px 1px 10px 3px rgba(0, 0, 0, 0.4);
box-shadow: 1px 1px 10px 3px rgba(0, 0, 0, 0.4);
padding: 10px;
}
.brands img {
max-height: 60px;
max-width: 100%;
}
@media only screen and (max-width: 992px) {
.col-md-3,
.col-lg-4,
.col-md-4 {
margin: 20px 0;
}
}