-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
121 lines (100 loc) · 1.84 KB
/
Copy pathstyle.css
File metadata and controls
121 lines (100 loc) · 1.84 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
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
body {
background-color: #f8f9fa;
font-family: 'Roboto', sans-serif;
}
.container {
margin-top: 20px;
margin-bottom: 20px;
}
.section-title {
margin-top: 40px;
margin-bottom: 20px;
font-family: 'Merriweather', serif;
}
.contact {
margin-top: 10px;
display: flex;
justify-content: center;
align-items: center;
}
.contact a i {
margin: 0 10px;
color: #007bff;
text-decoration: none;
font-size: 1.5rem;
}
.contact a:hover {
text-decoration: underline;
}
.contact span {
color: #333;
}
.resume-header {
margin-top: 30px;
}
.header-img {
width: 150px;
height: 150px;
object-fit: cover;
border-radius: 50%;
}
.company-logo, .education-logo {
width: 56px;
height: 56px;
object-fit: contain;
margin-right: 10px;
vertical-align: top;
}
h1, h2, h5, h6 {
font-family: 'Merriweather', serif;
}
.project-link, .certification-link {
color: #007bff;
text-decoration: none;
}
.project-link:hover, .certification-link:hover {
text-decoration: underline;
}
.certification-card {
height: 100%;
}
.skills-section {
height: 100%;
display: flex;
align-items: stretch;
}
.skills-card {
flex-grow: 1;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.resume-title {
font-size: 3.5rem;
font-weight: 300;
line-height: 1.2;
}
@media (min-width: 576px) and (max-width: 768px) {
.resume-title {
font-size: 3rem;
text-align: center;
}
}
@media (max-width: 576px) {
.resume-header {
margin-top: 30px;
}
.header-img {
display: block;
margin-left: auto;
margin-right: auto;
margin-bottom: 30px;
}
.resume-title {
font-size: 2.5rem;
text-align: center;
}
.header-section {
width: 100%;
}
}