-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
124 lines (105 loc) · 1.79 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
body {
margin: 0;
font-family: Arial, sans-serif;
color: #333;
line-height: 1.6;
background-color: #f4f4f9;
}
header {
text-align: center;
padding: 4rem 2rem;
background-color: #fff;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
header h1 {
font-size: 2.5rem;
margin: 0.5rem 0;
}
header p {
font-size: 1.2rem;
color: #666;
}
nav {
display: flex;
justify-content: center;
background-color: #222;
padding: 1rem 0;
}
nav a {
color: #fff;
text-decoration: none;
margin: 0 1rem;
font-size: 1rem;
}
nav a:hover {
color: #4CAF50;
}
section {
max-width: 900px;
margin: 3rem auto;
padding: 2rem;
background: #fff;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
section h2 {
font-size: 2rem;
margin-bottom: 1rem;
color: #222;
}
section p {
font-size: 1rem;
color: #555;
}
#experience .experience h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: #222222;
}
#experience .experience span {
font-size: 1.2rem;
margin-bottom: 1rem;
color: #000000;
}
.experience span
{
font-size: 1rem;
margin-bottom: 1rem;
color: #222;
font-weight: bold;
}
.roles
{
margin-left: 2rem;
}
.photo-placeholder {
width: 150px;
height: 150px;
margin: 1rem auto;
background-color: #ccc;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
color: #666;
}
.photo-placeholder img {
width: 100%;
height: 100%;
border-radius: 50%;
object-fit: cover;
}
footer {
text-align: center;
padding: 2rem;
background-color: #222;
color: #fff;
}
footer a {
color: #4CAF50;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}