-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (37 loc) · 1.02 KB
/
Copy pathstyle.css
File metadata and controls
43 lines (37 loc) · 1.02 KB
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
/* Styles go here */
hr {
height: 3px;
margin-left: 0px;
margin-bottom:10px;
}
.hr-warning{
background-image: -webkit-linear-gradient(left, rgba(210,105,30,.8), rgba(210,105,30,.6), rgba(0,0,0,0));
}
.hr-success{
background-image: -webkit-linear-gradient(left, rgba(15,157,88,.8), rgba(15, 157, 88,.6), rgba(0,0,0,0));
}
.hr-primary{
background-image: -webkit-linear-gradient(left, #2aabd2, #5bc0de, rgba(0,0,0,0));
}
.hr-danger{
background-image: -webkit-linear-gradient(left, rgba(244,67,54,.8), rgba(244,67,54,.6), rgba(0,0,0,0));
}
.hr-danger-revert{
background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(244,67,54,.6), rgba(244,67,54,.8));
}
body, html {
height: 100%;
}
body {
background: url('background.jpg') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.container{
padding: 25px;
}
#boxshadow {
box-shadow: 5px 10px 18px #888888;
}