-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
40 lines (30 loc) · 854 Bytes
/
styles.css
File metadata and controls
40 lines (30 loc) · 854 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
.center {
text-align: center;
border: 3px solid green;
width : 500px;
}
ul#menu li {
display:inline;
}
/* Make sure the links never turn back to purple */
a { color:blue } /* Globally */
/* Each state */
/* Credit due here! -> https://stackoverflow.com/questions/10312857/blue-and-purple-default-links-how-to-remove */
a:visited { text-decoration: none; color:blue; }
a:hover { text-decoration: none; color:blue; }
a:focus { text-decoration: none; color:yellow; }
a:hover, a:active { text-decoration: none; color:black }
/* More credit due here -> https://www.w3schools.com/html/tryit.asp?filename=tryhtml_table_intro */
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 50%;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}