blob: d50e31f8986f5311dd20c7164ee9e174ab3d8a51 (
plain)
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
|
@import "custom";
@import "bootstrap-src/scss/bootstrap";
@import "bootstrap-callout";
body{
background-color: #eee;
}
.navbar.navlogo{
padding: 0;
}
.navbar.navlogo .navbar-brand{
padding: 0;
}
.navbar-toggler{
margin-right: 1rem;
}
@media screen and (max-width: 992px){
.navbar-nav .nav-link{
margin-left: 1rem;
}
}
.footer {
padding: 1rem 0;
margin-top: 2rem;
font-size: 85%;
text-align: left;
}
.footer.text-light a{
color: $light !important;
text-decoration: underline;
}
.jumbotron {
position: relative;
overflow: hidden;
min-height: 250px;
margin-bottom: 0;
}
.jumbotron h2{
font-size: 3rem;
}
.jumbotron .container {
position: relative;
z-index: 2;
background: rgba(0,0,0,0.5);
padding: 2rem;
border: 1px solid rgba(0,0,0,0.1);
border-radius: 3px;
}
.jumbotron a{
}
.jumbotron-background img {
object-fit: cover;
font-family: 'object-fit: cover;';
position: absolute;
top: 0;
z-index: 1;
width: 100%;
height: 100%;
opacity: 0.9;
}
main.container{
margin-top: 2rem;
}
.show-case-detail .description p{
margin-bottom: 0.5rem;
}
.show-case-detail p{
margin-bottom: 0;
}
.show-case{
max-width: 1024px;
background-color: #fff;
border-radius: 4px;
}
.card-body.legend {
padding: 0.5rem;
font-size: 0.9em;
}
@import "custom_post";
|