-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathold-style.css
101 lines (86 loc) · 1.51 KB
/
old-style.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
* {
margin: 0;
padding: 0;
border: 0;
outline: 0;
box-sizing: border-box;
}
.header {
z-index: 2;
position: fixed;
display: table;
table-layout: fixed;
width: 100%;
height: 20px;
background-color: gray;
}
.top-bar-title {
font-family: Georgia, 'Times New Roman', Times, serif;
color: black;
display: table-cell;
overflow: hidden;
font-size: 15px;
margin: 0;
padding: 0;
}
.header .nav {
display: table-cell;
text-align: right;
margin: 0;
padding: 0 20px;
}
.header .nav ul {
margin: 0;
padding: 0;
}
.header .nav li{
display: inline;
font-size: 15px;
margin: 0 10px;
}
.banner {
width: 100%;
height: 550px;
background: white;
}
.banner .background-img {
width: 100%;
height: 100%;
background-image: url("./assets/banner.png");
background-position: center;
background-size: cover;
opacity: 0.6;
}
.banner .title {
width: 100%;
position: absolute;
top: 200px;
text-align: center;
z-index: 1;
}
/* header img {
border-radius: 50%;
width: 350px;
} */
/* nav h2 {
display: inline-block;
width: 10%;
text-align: center;
background-color: aqua;
}
nav a:hover {
color: darkcyan;
} */
h2 {
color: maroon;
font-family: Georgia, 'Times New Roman', Times, serif;
}
p {
font-family: Arial, Helvetica, sans-serif;
}
th {
font-family: Georgia, 'Times New Roman', Times, serif;
}
td {
font-family: Arial, Helvetica, sans-serif;
}