-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlab9.css
More file actions
40 lines (40 loc) · 723 Bytes
/
lab9.css
File metadata and controls
40 lines (40 loc) · 723 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
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
height: 100%;
width: 100%;
padding-bottom: 100px;
}
.header {
background: black;
color: white;
font-size: 20px;
height: 80px;
line-height: 80px;
padding-left: 30px;
}
.footer {
color: #888;
background-color: #333;
line-height: 30px;
padding-right: 20px;
font-style: italic;
text-align: right;
font-size: 14px;
height: 30px;
position: fixed;
bottom: 0;
left: 0;
right: 0;
}
#coords{
width: 500px;
height: 500px;
background-color: rgb(0, 89, 18);
color: rgb(255, 255, 255);
text-align: center;
}
#output{
font-size: 25px;
color: lime;
}