-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
121 lines (101 loc) · 2.11 KB
/
style.css
File metadata and controls
121 lines (101 loc) · 2.11 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
115
116
117
118
119
120
121
html {
height: 100%;
width: 100%;
}
body {
font-size: 24px;
font-weight: bold;
background-color: lightgrey;
color: black;
}
p {
/*make the text of paragraph further away from the left and right borders of the screen*/
margin-left: 150px;
margin-right: 150px;
}
/* Add a black background color to the top navigation */
.topnav {
background-color: #333;
overflow: hidden;
display: flex;
justify-content: space-around; /* Evenly spaces the items */
align-items: center; /* Centers the items vertically */
}
/* Style the links inside the navigation bar */
.topnav a {
color: #f2f2f2;
text-align: center;
padding: 14px 32px;
margin: 15px;
text-decoration: none;
font-size: 34px;
background-color: #333;
color: white;
display: inline-block;
width: 200px;
}
/* Change the color of links on hover */
.topnav a:hover {
background-color: maroon;
color: white;
}
/* Add a color to the active/current link */
.topnav a.active {
background-color: #04AA6D;
color: white;
}
table {
width: 100%;
/*border-collapse: collapse;*/
margin-bottom: 20px;
}
th, td {
padding: 12px;
text-align: left;
border-bottom: 2px solid black;
}
/* center the image */
img {
display: block;
margin-left: auto;
margin-right: auto;
}
.dot {
position: relative;
height: 15px;
width: 15px;
background-color: black;
border-radius: 50%;
border: 2px solid white;
}
#status {
height: 25px;
width: 100px;
font-size: 15px;
margin: 2 5px;
}
#location {
height: 25px;
width: 100px;
font-size: 15px;
margin: 0px 25px;
}
button {
height: 25px;
width: 100px;
font-size: 15px;
margin: 15px;
}
#hallSection {
height: 25px;
width: 150px;
font-size: 15px;
position: absolute;
top: 33.5%;
left: 24.2%;
}
#hallSectionLabel {
position: absolute;
top: 33%;
left: 15.1%;
}