-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
114 lines (94 loc) · 1.94 KB
/
style.css
File metadata and controls
114 lines (94 loc) · 1.94 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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
body{
background-color:black;
}
div{
position:absolute;
font-family: monospace;
}
@font-face{ /* Has to be in the same folder as css code to work */
src: url(IMFellEnglish-Italic.ttf);
font-family:CustomFont;
}
.headContainer{
display:flex;
position : fixed; /*stays in the same place even if the page is scrolled */
background-color:black;
color: black;
justify-content: center; /*set the alignment of primary axis (x) */
height: 80px;
align-items:center; /*set the alignment of secondary axis (y) */
Z-index: 2; /* everything hides behinder the header */
top:0px; /* so it is fixed to the sides of the page */
left:0;
right:0;
}
.headTitle{
color: whitesmoke;
font-size: 30px;
font-family:CustomFont;
}
button{
display: flex;
justify-content: space-around;
width: 50px;
height: 45px;
background-color: lightgray;
border-style: solid;
border-color:black;
font-weight: bold;
text-align: low;
padding-top: 25%;
border-radius: 30%;
}
#interface{
margin:auto;
width: 480px;
height:530px;
position:relative;
margin-top: 90px;
}
#positioning{
margin-left:15px;
}
#screen{
background-color:black;
color: black;
border-style: solid;
border-color:black;
margin-bottom: 0cm;
}
#control{
top:450px;
}
#info{
top:410px;
background-color:black;
color:white;
margin:auto;
width: 440px;
height:110px;
border-style: solid;
border-color:white;
text-align: center;
border-radius:10px;
}
.north{
top:80px;
left:200px;
}
.east{
top:120px;
left:260px;
}
.south{
top:160px;
left:200px;
}
.west{
top:120px;
left:140px;
}
.music{
top:210px;
left:80px;
}