-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.scss
More file actions
executable file
·121 lines (103 loc) · 1.93 KB
/
style.scss
File metadata and controls
executable file
·121 lines (103 loc) · 1.93 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
---
---
// Variables
$assets: "/assets";
$color-primary: #06C;
$color-muted: #f2f7fc;
body {
background-color: $color-muted;
}
.text-primary {
color: $color-primary !important;
}
.table-dark {
background-color: transparent !important;
}
// Hero
.it-hero-wrapper.it-overlay.it-dark .img-responsive-wrapper:after {
background: rgba(23,50,77,.75);
}
.it-hero-wrapper.it-hero-small-size {
min-height: initial !important;
}
.it-hero-wrapper .it-hero-text-wrapper {
@media (min-width: 768px) {
padding: 64px 10% !important;
}
@media (min-width: 992px) {
padding: 80px 10% 160px !important;
}
}
// Card
.card-risorsa {
.card-title {
font-weight: 700;
font-size: 2rem;
line-height: 1;
}
.card-links {
line-height: 36px;
}
.card-logo {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
&-img {
min-width: 64px;
width: 64px;
height: 64px;
object-fit: contain;
overflow: hidden;
}
}
.card-body {
z-index: 1;
}
}
.overlay-panel.overlay-panel-fullheight {
&.overlay-panel-fullheight_risorsa {
top: 0;
height: 100%;
max-height: 100%;
display: inline-block;
opacity: 0;
transition: opacity .2s;
background-color: #0c0c0d;
align-items: normal;
padding: 24px;
z-index: 0;
&.active {
opacity: 1;
z-index: 2;
}
span {
display: inline-block;
}
}
}
.btn-no-viz {
background-color: transparent;
border: 0;
appearance: none;
}
// Filters
.filters {
justify-content: flex-start;
align-items: center;
}
// Modal
.modal.it-dialog-scrollable .modal-dialog {
margin: 48px 16px;
@media (min-width: 768px) {
margin-left: auto;
margin-right: auto;
}
}
.modal.it-dialog-scrollable .modal-dialog .modal-content {
height: calc(100vh - 96px);
}
.form-check [type=checkbox]+label,
.form-check [type=radio]+label {
font-size: 14px;
}