-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_nav.scss
49 lines (41 loc) · 818 Bytes
/
_nav.scss
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
$color1: #FFAD00;
$grey1: #35373B;
$grey2: #1D1F20;
.btn-group{
display: flex;
flex-direction: row;
justify-content: center;
flex-wrap: nowrap;
width: 100%;
height: 64px;
background-color: #1D1F20;
align-items: center;
.btn-secondary{
width: 180px;
background-color: #35373B;
color: $color1;
border: 5px;
font-family: helvetica;
font-size: 11pt;
margin: 5px;
transition: all 500ms;
}
.btn-secondary:hover{
background-color: #53565c;
}
}
// carrousel
.carousel{
width: 700px;
margin: 0px auto;
margin-top: 10px;
.carousel-caption{
h5{
color: black;
font-size: 20pt;
}
}
}
.d-block{
height: 320px;
}