-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathex3.css
More file actions
95 lines (82 loc) · 1.56 KB
/
ex3.css
File metadata and controls
95 lines (82 loc) · 1.56 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
body {
background-color: #f9f9f9;
color: #333;
font-family: 'Montserrat', sans-serif;
font-size: 16px;
line-height: 1.6;
margin: 0;
padding: 0;
}
header {
background: linear-gradient(135deg, #34495e, #2c3e50);
color: white;
text-align: center;
padding: 40px 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.name {
font-size: 32px;
font-weight: 700;
letter-spacing: 1px;
margin-bottom: 5px;
font-family: 'Roboto Slab', serif;
}
.title {
font-size: 20px;
font-weight: 300;
color: #ddd;
}
h2 {
color: #2c3e50;
border-bottom: 2px solid #2c3e50;
padding-bottom: 8px;
margin-top: 30px;
font-weight: 600;
font-family: 'Roboto Slab', serif;
}
h3 {
color: #34495e;
font-weight: 500;
margin-top: 20px;
font-family: 'Montserrat', sans-serif;
}
.contact {
background-color: #ecf0f1;
padding: 20px;
border-radius: 8px;
margin: 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.contact h2::after {
content: " 📧";
color: #e74c3c;
}
.experience article::before {
content: "• ";
color: #3498db;
margin-right: 5px;
}
.link {
color: #3498db;
text-decoration: none;
transition: color 0.3s ease;
}
.link:hover {
text-decoration: underline;
color: #2980b9;
}
.italic {
font-style: italic;
color: #777;
}
footer {
text-align: center;
padding: 20px;
background: #34495e;
color: white;
margin-top: 40px;
box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
}
p, ul, li {
margin-bottom: 15px;
}