-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
56 lines (46 loc) · 804 Bytes
/
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
/*
Theme Name: T7
*/
body {
color: brown;
background-color: rgb(222, 233, 122);
}
a:link,
a:visited {
color: #006ec3;
}
p {
line-height: 1.65em;
}
/* Remove the navbar's default margin-bottom and rounded borders */
.navbar-inverse {
margin-bottom: 0;
border-radius: 0;
}
/* Because the top navigation takes up 50 pixels*/
.be-container {
padding-top: 50px;
}
.navbar-nav {
margin-top: 50px;
}
.navbar-nav :hover {
background-color: #07A853;
color: aliceblue;
}
.navbar-nav :active {
background-color: rgb(122, 161, 233);
}
.logo {
height: 40px;
padding: 0px;
margin: 0px;
margin-top: -10px;
}
/**
New in version 6
overwriting a bootstrap style notice the use of !important
*/
.btn-success {
background-color: fuchsia!important;
}