-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (30 loc) · 803 Bytes
/
style.css
File metadata and controls
43 lines (30 loc) · 803 Bytes
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
<link rel="leader" href="'resources/images/leader.png'" />
<link rel="manager" href="'resources/images/manager.png'" />
<link rel="developer" href="'resources/images/developer.png'" />
/* To add some space below the navigation bar */
body {
margin-top: 150px;
}
/* add some color - if you want color behind a major point on your website */
.banner_color {
background-color: #E9E9E9;
font-weight:bold;
}
/* Style buttons - if you want some text centered and bolded */
.center {
font-weight:bold;
text-align: center;
}
/* Style buttons - if you want to have a button */
.btn {
background-color: #207B7C;
border: none;
color: white;
padding: 8px 20px;
cursor: pointer;
font-size: 14px;
}
/* Darker background on mouse-over */
.btn:hover {
background-color: #112345;
}