-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
116 lines (97 loc) · 1.81 KB
/
styles.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
104
105
106
107
108
109
110
111
112
113
114
115
116
title {
font-size: 30px;
}
h1 {
font-size: 26px;
}
h2 {
font-size: 24px;
}
h3 {
font-size: 22px;
}
h4 {
font-size: 18px;
}
h5 {
font-size: 16px;
}
h6 {
font-size: 12px;
}
/***************************/
/* Table of contents start */
#TOC {
border: none !important;
}
#TOC::before {
content: "";
display: block;
height: 200px;
margin: 10px 0px 10px 0px;
border: none;
background-image: url("img/paulzoomcircle.png");
background-size: contain;
background-position: center center;
background-repeat: no-repeat;
}
.list-group-item.active, .list-group-item.active:focus, .list-group-item.active:hover {
z-index: 2;
color: #f8f9fa;
background-color: #00923f;
border-color: #00923f;
}
/* Table of contents end */
/*************************/
/**************************************/
/* Highlighting text with mouse start */
::selection {
color: #f8f9fa;
background: #00923f;
}
/* Highlighting text with mouse end */
/************************************/
#footer{
display: table;
text-align: center;
margin-left: auto;
margin-right: auto;
}
/* unvisited link */
a:link {
color: #00923f;
}
/* visited link */
a:visited {
color: #00923f;
}
/* mouse over link */
a:hover {
color: #00923f;
}
/* selected link */
a:active {
color: #00923f;
}
#headerbanner
{
height: 200px;
width: 100%;
}
#headerbanner img
{
width: 100%;
height: 200px;
max-width: 1170px;
object-fit: cover;
position: absolute;
left: 50%;
transform: translate(-50%, 0%);
overflow: hidden;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#headerbanner:hover img {
transform: translate(-50%, 0%) scale(1.2, 1.2);
z-index: 9;
transition: transform 0.5s ease;
}