-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
39 lines (34 loc) · 1.39 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
body {
height: 90%;
}
.img-gradient{
position:relative;
display:inline-block;
}
/*
#002f4b,#dc4225
Convert HEX to RGBA - http://hex2rgba.devoth.com/
*/
.img-gradient:after {
content:'';
position:absolute;
left:0; top:0;
width:100%; height:100%;
display:inline-block;
background: -moz-linear-gradient(top, rgba(246,86,131,0.65) 0%,rgba(57,52,141, 0.8) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(246,86,131,0.35)), color-stop(100%,rgba(57,52,141, 0.8))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(246,86,131,0.65) 0%,rgba(57,52,141, 0.8) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(246,86,131,0.65) 0%,rgba(57,52,141, 0.8) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(246,86,131,0.65) 0%,rgba(57,52,141, 0.8) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(246,86,131,0.65) 0%,rgba(57,52,141, 0.8) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#002f4b', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */
}
.img-gradient img{
display:block;
}
.footer {
background-color: #f5f5f5;
}
.paginationjs {
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji" !important;
}