-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
103 lines (85 loc) · 1.94 KB
/
style.css
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
/*----------------NAVBAR ---------------*/
.navbar-default {
background-color: #562457;
}
.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.active>a,
a.dropdown-toggle:hover {
background-color: #88398A !important;
}
/* Dropdown menu color */
.navbar-default .dropdown-menu {
background-color: #88398A;
}
/* Dropdown menu hover color */
.navbar-default .dropdown-menu>li>a:hover {
background-color: #88398Af2;
}
/* Navbar Links when hovered*/
.navbar-default .dropdown-menu>.active>a
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav:hover,
.navbar-default .navbar-nav>li>a:hover,
a.navbar-brand:hover {
color: #ffffffab !important;
background-color: #88398A;
}
/*----------LOGO above TOC---------*/
#TOC::before {
content: "";
display: block;
height: 200px;
margin: 2em 20px 40px 20px;
background-image: url("img/R-Ladies_Argentina_hex.png");
background-size: contain;
background-position: center center;
background-repeat: no-repeat;
}
.tocify {
position: -webkit-sticky;
position: sticky;
top: 120px; /*Controls where TOC stops when sticky */
width: 100% !important;
border: none;
}
/* TOC links */
.list-group-item {
color: #562457;
font-size: 16px;
}
.list-group-item.active {
color: white;
background-color: #562457;
border: none;
}
.list-group-item:hover,
.list-group-item.active:hover {
color: #131b23;
background-color: #d3d3d3;
}
/* links */
a {
color: #562457;
}
a:hover {
color: #181818; /* darker color when hovering */
}
/*----------------ADDING WHITE SPACE-------------*/
.title {
margin-top: 2em !important;
margin-bottom: 0.75em;
}
.section h1,
.section h2,
.section h3,
.section h4,
.section h5 {
padding-top: 3em !important; /*adding so much padding because theme adds a margin-top: -65px by default */
margin-bottom: 0.75em;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}