-
Notifications
You must be signed in to change notification settings - Fork 1
/
light.css
51 lines (41 loc) · 834 Bytes
/
light.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
body.light{
color: rgba(20,20,20,0.92);
background: #c7c7c7 url(Images/background-light.png);
background-attachment: fixed;
background-position: center;
background-size: cover;
background-repeat: repeat;
}
body.light a:link{
color: #3333f7;
}
body.light a:hover{
color: #3333f7;
}
body.light a:active{
color: #3333f7;
}
body.light a:visited{
color: #3333f7;
}
body.light .jumbotron{
background-color: rgb(230,230,230,0.9);
}
body.light .panel{
background: rgba(220, 220, 220, 0.9);
}
body.light .button{
background-color: #4d4dff;
color: white;
}
body.light .button:hover{
background-color: #7272fc;
}
body.light .button:active{
background-color: #4d4dff;
color: white;
}
body.light .selected-button{
background-color: #3b3bf7;
color: white;
}