-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsite.css
101 lines (86 loc) · 1.39 KB
/
site.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
body{
font-family: Geneva, Verdana, Tahoma, sans-serif;
}
main {
background-color: #BCBCBF;
padding: 4px;
color: #202020;
grid-area: main;
}
aside {
grid-area: aside;
}
h1, h2 {
color: darkblue;
font-family: Georgia, 'Times New Roman', Times, serif;
}
#portrait {
border: 1px solid #808080;
border-radius: 8px;
padding: 2px;
margin: 8px;
width: 50px;
}
.experience {
border: inset 1px;
margin-bottom: 4px;
padding: 4px;
background-color: white;
color: #222;
}
.experience .title {
font-weight: bold;
}
footer {
text-align: center;
background-color: #202020;
color: lightblue;
padding: 2px;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
grid-area: footer;
}
#menu {
/*float: right;*/
margin-left: auto;
}
#menu li{
display: inline;
padding: 8px;
background-color: rgb(40, 40, 40);
color: white;
}
#menu li a{
color: white;
text-decoration: none;
}
#menu li.active{
background-color: darkslateblue;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
grid-area: header;
}
/*
header #portrait, header #siteName, header #menu {
display: inline;
vertical-align: middle;
}
*/
.container {
display: grid;
grid-template-areas:
"header header"
"main aside"
"footer footer";
grid-template-columns: auto 200px;
grid-gap: 8px;
}
#formInfo {
font-size: 14px;
font-style: italic;
}