forked from rodrigograca31/Samaritan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
85 lines (81 loc) · 1.95 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
@font-face {
font-family: magdacleanmono;
src: url(font/magdacleanmono-bold.ttf);
}
body {
color: #FFF;
background-color: #000;
height: 100%;
width: 100%;
height: 100%;
position: fixed;
margin: 0;
padding: 0;
text-align: center;
}
p {
font-family:"magdacleanmono";
font-size: 2em;
text-transform: uppercase;
display: block !important;
}
#main {
position: absolute;
display: block;
width: 100%;
bottom: 50%;
}
#main hr {
width: 30px; /* default initial size */
border-top: 2px solid #FFF;
border-bottom: none;
}
#main p, #main hr {
margin-top: 0;
margin-bottom: 0;
}
#main p.hidden {
color: #000;
}
#marker {
position: absolute;
display: block;
width: 100%;
top: 50%;
vertical-align: top;
}
#triangle {
color: #F00;
font-size: 2em;
font-family: "magdacleanmono";
}
#settings {
width: 30px;
height: 30px;
font-size: 10px;
position: absolute;
bottom: 0px;
right: 0px;
color: #444;
}
@media(min-width: 900px){
#main p.hidden {
color: #fff;
}
body {
color: #000 !important;
background-color: #fff;
}
#main hr {
border-top: 2px solid #000;
}
body, html {
background-color: rgba(0, 0, 0, 0.56);
background: -moz-radial-gradient(center, ellipse cover, rgba(255,255,255,0.56) 0%, rgba(127,127,127,1) 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255,255,255,0.56)), color-stop(100%,rgba(127,127,127,1)));
background: -webkit-radial-gradient(center, ellipse cover, rgba(255,255,255,0.56) 0%,rgba(127,127,127,1) 100%);
background: -o-radial-gradient(center, ellipse cover, rgba(255,255,255,0.56) 0%,rgba(127,127,127,1) 100%);
background: -ms-radial-gradient(center, ellipse cover, rgba(255,255,255,0.56) 0%,rgba(127,127,127,1) 100%);
background: radial-gradient(center, ellipse cover, rgba(255,255,255,0.56) 0%,rgba(127,127,127,1) 100%);
}
}