-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathstyle.css
94 lines (74 loc) · 1.77 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
/*-----------------------------------------------------------------------------------
Template Name: Digital Library
Template URI: https://github.com/MartMbithi/Digital_Library
Description: Digital Library is a web based and also desktop based library management system.
Author: MartDevelopers Inc
Author URI: http://martdev.info
Version: 1.0
-----------------------------------------------------------------------------------
CSS INDEX
===================
1. Google font
2. Theme Default CSS (body, link color, section etc)
-----------------------------------------------------------------------------------*/
/*--------------------
1. Google font
----------------------*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700');
/*------------------
2. Theme Default CSS
-------------------*/
.alignleft {
float: left;
margin-right: 15px;
}
.alignright {
float: right;
margin-left: 15px;
}
.aligncenter {
display: block;
margin: 0 auto 15px;
}
a {
color: #5d5d5d;
-webkit-transition: 0.3s;
transition: 0.3s;
}
a:focus,
a:hover {
outline: 0 solid;
text-decoration: none
}
img {
height: auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0 0 15px;
font-weight: 500;
color: #5b5b5b;
}
h2 {
font-weight: 300;
}
html,
body {
height: 100%
}
body {
font-family: 'Montserrat', sans-serif;
font-weight: 400;
color: #5b5b5b;
line-height: 1.6;
}
/* Remove Chrome Input Field's Unwanted Yellow Background Color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
-webkit-box-shadow: 0 0 0px 1000px white inset !important;
}