-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
87 lines (71 loc) · 1.06 KB
/
index.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
.nav {
background-color: #333;
overflow: hidden;
}
.nav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
/* Change the color of links on hover */
.nav a:hover {
background-color: #ddd;
color: black;
}
/* Add a color to the active/current link */
.nav a.focus {
background-color: #cf1717;
color: white;
}
.center {
text-align: center;
vertical-align: middle;
}
.centercontainer {
max-width: 1000px;
margin: 0 auto;
padding: 20px;
box-shadow: 0 2px 4px rgba(0,0,0, 0.1);
}
.body {
background-color: #D3D3D3;
padding: 0;
margin: 0;
}
.flex-container {
display: flex;
}
.flex-container > div {
padding: 10px;
}
.side {
flex-basis: 300px;
}
.main {
flex-basis: 700px;
}
img {
border-radius: 50%;
display: block;
margin-left: auto;
margin-right: auto;
}
.infolink {
color: black;
text-decoration: none;
}
.infolink:hover {
text-decoration: underline;
}
a {
color: red
}
::selection {
background: #f59842;
}
.year {
font-family: cursive;
}