-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsage.css
84 lines (77 loc) · 991 Bytes
/
sage.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
body {
background-color:black;
color:white;
overflow:hidden;
}
section {
position:absolute;
}
section.welcome {
top:20px;
left:20px;
}
section.picture img{
top:0;
left:0;
position:absolute;
}
section.picture {
z-index:-100;
position:absolute;
top:0;
left:0;
right:0;
bottom:0;
width:100%;
height:100%;
border: solid 1px red;
}
/* Navigation styles */
nav {
position:absolute;
bottom:0px;
left:0px;
right:0px;
}
nav header {
font-weight:bold;
}
nav a {
text-decoration:none;
}
nav a:hover {
text-decoration:underline;
}
/* Service info styles */
section.status {
top:0;
right:0;
}
/* Console output section */
section.console {
top:0;
left:0;
right:0;
height:0px;
overflow:scroll;
background-color:black;
border-width:0;
border-color:red;
opacity:0.5;
border-width-bottom:1px;
}
section.console:hover {
height:50%;
}
.error, .red {
color:red;
}
.success, .green {
color:green;
}
footer.copyright {
position:absolute;
right:0;
bottom:0;
cursor:default;
}