-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
101 lines (86 loc) · 1.65 KB
/
styles.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 {
height: 100%;
margin-left: 10rem;
padding: 0px 10px;
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
min-height: 100vh;
}
#content {
flex: 1 0 auto;
}
header {
background-color: #f8f9fa;
padding: 20px;
text-align: center;
}
h2 a {
color: black;
text-decoration: underline;
}
h2 a:hover {
color: #007BFF;
text-decoration: underline;
}
article {
margin: 20px 0;
}
footer {
background-color: #f8f9fa;
padding: 20px;
text-align: center;
flex-shrink: 0;
}
footer a {
color: #333; /* Change the color to match your design */
margin-right: 20px; /* Add some space between the icons */
}
footer a:hover {
color: #007BFF; /* Change the color on hover */
}
footer i {
font-size: 24px; /* Make the icons larger */
}
/* The sidebar menu */
.sidenav {
height: 100vh;
width: 10rem;
position: fixed;
top: 0;
left: 0;
background-color: black;
overflow-x: hidden; /* Disable horizontal scroll */
padding-top: 20px;
}
/* The navigation menu links */
.sidenav a {
padding: 6px 8px 6px 16px;
text-decoration: none;
font-size: 25px;
color: #808080;
display: block;
}
/* hover color */
.sidenav a:hover {
color: white;
}
#experience li {
margin: 10px 0;
padding: 10px;
border: 1px solid #ddd;
border-radius: 5px;
background-color: #f9f9f9;
list-style-type: none;
display: flex;
}
#experience li img {
max-width: 200px;
max-height: 200px;
border-radius: 10px;
border: 2px solid black;
margin-right: 1em;
}
#experience li .content {
flex: 1;
}