-
Notifications
You must be signed in to change notification settings - Fork 0
/
02.css
130 lines (112 loc) · 1.96 KB
/
02.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
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
122
123
124
125
126
127
128
129
130
/* Author:Amir Rahman
Date:25/5/2021
Filename: 02.css
View site in 1920px by 1080px */
:root {
font-size: 15px;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
body {
color: rgba(white, .2);
background-color: rgb(0, 0, 0);
font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
padding: 2em;
text-align: left;
}
* {
padding: 0;
margin: 0;
}
/* body */
h1 {
color: white;
}
p{
color: white
}
a {
color: greenyellow
}
.logo img {
width: 80px;
height: auto;
border: 3px solid white;
border-radius: 50px;
float: left;
}
img {
width: 320px;
height: auto;
float: right;
}
/* navigation bar */
.navbar {
background-color: black;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
height: 100px;
padding-top: 250px;
}
.nav-list {
display: flex;
width: 100%;
background-color: black;
align-items: center;
}
.nav-list li a {
text-decoration: none;
color: white;
}
html {
width: 100%;
}
body {
width: 95%;
margin: 0px auto;
font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
font-size: 0.8em;
}
h1 {
font-size: 2em;
}
/*Table styling*/
table {
border: 20px groove grey;
border-collapse: collapse;
color: rgb(0, 0, 0);
}
th {
border: 1px solid grey;
padding: 5px;
text-align: left;
vertical-align: top;
color: rgb(0, 0, 0);
}
td {
border: 1px solid grey;
padding: 5px;
text-align: left;
vertical-align: top;
color: rgb(255, 255, 255);
}
table col#firstCol {
background-color: yellow;
width: 200px;
color: white;
}
table col#hourCols {
width: 120px;
color: white;
}
thead {
background-color: aqua;
}
tfoot {
background-color: black;
color: white;
}