generated from Newton-School/responsive-resume-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
137 lines (114 loc) · 2.17 KB
/
style.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
125
126
127
128
129
130
131
132
133
134
135
136
137
* {
padding: 0;
margin: 0;
box-sizing: border-box;
list-style: none;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
/* Write CSS code below */
.main-content {
display: grid;
max-height: 100vh;
min-height: 1000px;
grid-template-columns: 300px 700px;
}
.left-section {
background-color: black;
color: aliceblue;
grid-column: 1 span;
/* grid-column-start: 1;
grid-column-end: 2; */
}
.right-section {
background-color: whitesmoke;
width: 90%;
grid-column: span 1 / span 2;
/* grid-column-start: 2;
grid-column-end: 3; */
}
.left-content {
padding: 1rem;
}
.profile-image img {
display: block;
margin: auto;
border: 5px white solid;
border-radius: 30%;
width: 30%;
}
.name {
font-size: 1.2rem;
font-weight: 700;
text-align: center;
padding: 0.8rem;
text-transform: uppercase;
word-spacing: 0.02px;
letter-spacing: 0.02px;
}
.designation {
font-size: 1rem;
text-align: center;
text-transform: uppercase;
padding-bottom: 0.5rem;
color: skyblue;
}
.description {
font-size: 0.75rem;
text-align: center;
padding: 1rem;
}
.icon a img {
border-radius: 10px;
width: 30px;
height: 30px;
align-content: center;
}
.contact span i {
width: 10px;
text-align: center;
}
.skills {
font-size: 0.75rem;
text-align: center;
text-transform: uppercase;
padding: 1rem 0.5rem;
}
.skill-name {
font-size: 0.65rem;
font-weight: 0.65rem;
text-align: left;
padding-bottom: 0.5rem;
}
.progress-bar {
border: 1px white solid;
height: 4px;
background-color: white;
}
.bar-1 {
width: 90%;
}
.bar-2 {
width: 75%;
}
.bar-3 {
width: 60%;
}
/* Write code for the right section here */
.right-main-content {
padding: 2rem 3rem;
}
.right-title {
text-transform: uppercase;
font-size: 1.2rem;
font-weight: 700;
padding: 00.5rem;
letter-spacing: 1px;
}
/* Make the Resume Responsive using Media queries */
@media (max-width: 673px) {
.main-content {
grid-template-columns: repeat(1, 1fr);
width: 90%;
min-height: 1000px;
}
}