-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
44 lines (44 loc) · 730 Bytes
/
style.css
File metadata and controls
44 lines (44 loc) · 730 Bytes
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
body {
margin: 0;
background-color: gray;
}
canvas {
width: 100%;
height: 100%;
display: block;
background-color: white;
background: url("http://127.0.0.1:8889/assets/textures/StarsMilkyWay.jpg")
}
div.absolute {
position: absolute;
width: auto;
height: auto;
padding: 10px;
border: 2px solid #3260a8;
background-color: #001c3b;
color: whitesmoke;
opacity: 0.7;
font-family:'Courier New', Courier, monospace;
}
div.absolute.topleft {
top: 0;
left: 0;
}
div.absolute.bottomleft {
bottom: 0;
left: 0;
}
div.absolute.topright {
top: 0;
right: 0;
}
div.absolute.bottom {
bottom: 0;
left: 40%;
right: 40%;
text-align: center;
}
div.absolute.bottomright {
bottom: 0;
right: 0;
}