-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgeneral.css
More file actions
102 lines (82 loc) · 1.25 KB
/
general.css
File metadata and controls
102 lines (82 loc) · 1.25 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
body {
word-wrap: break-word;
background-color: #3c3c3c;
color: beige;
font-family: "Trebuchet MS", Helvetica, sans-serif;
}
img {
padding: 5px;
}
.img-profile {
border: 2px solid #dddd;
border-radius: 6px;
}
/* unvisited link */
a:link {
color: white;
}
/* visited link */
a:visited {
color: white;
}
/* mouse over link */
a:hover {
color: hotpink;
}
/* selected link */
a:active {
color: aqua;
}
.title {
margin: auto;
}
td{
width: 100px;
height:100px;
border: 2px solid maroon;
}
table{
text-align: center;
width:100px;
height:100px;
}
h1 {
font-size: 60px;
letter-spacing: 2px;
text-transform: uppercase;
font-weight: normal;
margin-top: -15px;
margin-bottom: -15px;
background-color: AntiqueWhite;
}
h1 span {
display: block;
font-size: 50%;
}
p {
text-align: inherit;
color: beige;
padding: 5px;
}
.topnav {
overflow: hidden;
background-color: #BF4025;
}
.topnav a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
background-color: #BF4025;
}
.topnav a:hover {
background-color: maroon;
color: black;
}
.topnav a.active {
background-color: maroon;
color: white;
}