-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflower.css
More file actions
59 lines (51 loc) · 944 Bytes
/
Copy pathflower.css
File metadata and controls
59 lines (51 loc) · 944 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
body {
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
"Lucida Sans", Arial, sans-serif;
margin: 20px;
padding: 20px;
background-color: #02c0ef;
color: #06f7ab;
}
h1 {
color: orange;
text-align: center;
}
nav {
width: 100%;
position: absolute;
top: 0;
left: 0;
display: flex;
justify-content: space-between;
align-items: center;
}
nav ul li {
list-style: none;
display: inline-block;
margin: 40px;
}
nav ul li a {
text-decoration: none;
color: #06f7ab;
font-size: 20px;
}
a:hover {
color: indigo;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
th,
td {
border: 1px solid #06f7ab;
padding: 8px;
text-align: left;
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
"Lucida Sans", Arial, sans-serif;
}
th {
background-color: #06f7ab;
color: white;
}