-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
124 lines (96 loc) · 2.17 KB
/
Copy pathindex.css
File metadata and controls
124 lines (96 loc) · 2.17 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
@import url('https://fonts.googleapis.com/css2?family=Arimo&display=swap');
:root{
--nv-gray80: #323232;
--nv-gray60: hsl(0,0%,40%);
--nv-red: #af2424;
}
* {
font-family: 'Arimo', sans-serif;
}
.img-hover-zoom {
width: auto;
height: auto;
overflow: hidden;
}
.img-hover-zoom img {
transition: transform .5s ease;
}
.img-hover-zoom:hover img {
transform: scale(1.15);
}
.bg-light {
background-color: #fff !important;
}
h1 {
color: var(--nv-gray80) !important;
font-size: 20px;
padding: 10px;
}
.no-underline {
color: var(--nv-gray80) !important;
text-decoration: none;
}
.nav-link {
color: var(--nv-gray80) !important;
border-bottom: 3px solid transparent;
border-radius: 3px;
padding-bottom: 0px;
margin-bottom: 8px;
}
.nav-link:hover {
color: var(--nv-red) !important;
border-bottom: 3px solid var(--nv-red);
border-radius: 3px;
/* text-decoration: underline !important; */
}
a {
color: var(--nv-red) !important;
text-decoration: none;
}
.hover-shadow {
transition: box-shadow 0.3s;
}
.hover-shadow:hover {
box-shadow: 0 0 11px rgba(33,33,33,.2);
}
.navbar-logo {
width: auto;
height: 75px;
padding: 0 !important;
}
.navbar-brand {
padding: 0;
}
.icon-margin {
margin-right: 4px;
}
.alineat {
text-indent: 50px;
}
.maps-embed {
line-height: 0;
display: block;
}
/* .carousel-control-next, .carousel-control-prev {
height: 25%;
top: calc(50% - 25%/2);
background: rgba(0,0,0,0.5) !important;
} */
.carousel-control-prev, .carousel-control-next {
opacity: 1;
}
.carousel-control-prev:hover, .carousel-control-next:hover {
opacity: 1;
}
.carousel-control-prev {
background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(255,255,255,0) 100%);
}
.carousel-control-next {
background: linear-gradient(270deg, rgba(0,0,0,0.7) 0%, rgba(255,255,255,0) 100%);
}
.carousel-control-prev:hover {
background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(255,255,255,0) 100%) !important;
}
.carousel-control-next:hover {
background: linear-gradient(270deg, rgba(0,0,0,0.7) 0%, rgba(255,255,255,0) 100%) !important;
}