-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.css
More file actions
140 lines (112 loc) · 1.89 KB
/
page.css
File metadata and controls
140 lines (112 loc) · 1.89 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
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
131
132
133
134
135
136
137
138
139
body {
background-color: #fff;
color: #000;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
h1 {
font-weight: bolder;
}
h1, h2 {
color: #6e7d9e; /* blue-ish */
}
::selection {
background-color: #af5010; /* yellow-ish */
color: #fbf8e5; /* red-ish */
}
header {
/*font-size: x-large;
font-weight: bolder;*/
/*background-color: #1E3C78;*/ /* blue */
background-color: #1F407A; /* blue */
color: #fff;
text-align: center;
margin: 0px 0px;
padding: 10px 10px;
}
header h1 {
color: #AF5010;
letter-spacing: 0px;
}
figure {
vertical-align: middle;
margin: 0px 0px;
padding: 0px 0px;
}
#name {
font-weight: bold;
font-size: large;
color: #fff;
}
.date {
color: #6e7d9e;
font-size: large;
}
.info {
color: #6e7d9e;
font-size: large;
font-weight: bold;
}
.location {
font-size: large;
}
.location::before {
font-size: large;
color: #6e7d9e;
content: "@ ";
}
.title {
font-size: x-large;
color: #6e7d9e;
font-style: italic;
}
details > summary {
color: #6e7d9e;
font-weight: bold;
}
nav {
background-color: #1F407A;
color: #fff;
font-size: x-large;
font-weight: bolder;
text-align: center;
margin: 0px 0px;
padding: 5px 0px;
}
section a {
font-weight: bold;
font-size: large;
}
a {
color: #6e7d9e;
}
a:link {
text-decoration: none;
}
nav a::before {
content: "\002329";
color: #fff;
/*color: #F9C989;*/
}
nav a::after {
content: "\00232A";
color: #fff;
}
a:visited {
text-decoration: none;
}
a:hover, a:active, #address:hover, #phone:hover, #email:hover {
color: #AF5010;
}
a:active {
color: #AF5010;
}
section {
align: center;
}
footer {
background-color: #A5B7C5;
font-size: x-small;
font-style: italic;
margin: 0px 0px;
padding: 5px 10px;
}