-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbox.scss
68 lines (59 loc) · 983 Bytes
/
box.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
$primary-color: #C63D0F;
$secondary-color: #6E7D6C;
$content-color: #FDF3E7;
$highlight-color: #B4CCB1;
body {
padding-top: 70px;
background-color: $secondary-color;
}
.navbar-inverse .navbar-brand {
color: black;
}
.navbar {
background-color: $primary-color;
border-color: $primary-color;
.nav {
li {
a {
color: black;
}
}
}
}
i {
color: $highlight-color;
}
.nav-pills {
li.active {
a, a:focus, a:hover {
background-color: $content-color;
color: #000;
}
}
li {
a {
background-color: #3B3738;
color: #fff;
border-radius: 5px 5px 0px 0px;
}
}
}
.step-group {
.step {
background-color: $highlight-color;
font-weight: bold;
color: #000;
text-align: left;
}
margin-top: 10px;
li {
color: #000;
text-align: left;
}
}
.tab-content {
color : white;
background-color: $content-color;
padding : 5px 15px;
border-radius: 0px 0px 5px 5px;
}