generated from Newton-School/responsive-resume-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathstyle.css
150 lines (144 loc) · 2.57 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
138
139
140
141
142
143
144
145
146
147
148
149
150
*{
padding: 0;
margin: 0;
box-sizing: border-box;
list-style: none;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/* Write CSS code below */
body{
background-color: #add8e6;
}
.main-content {
display: grid;
grid-template-columns: 300px 700px;
min-height: 1000px;
width: 90%;
margin: 20px auto;
}
.left-section{
grid-column: span 1;
background-color: #003147;
color: #fff;
}
.right-section{
grid-column: span 1 / span 2;
background-color: #fff;
}
.left-content{
padding: 1rem;
}
.profile-image{
display: block;
margin: auto;
border: 5px white solid;
border-radius: 30%;
width: 60%;
}
.name{
font-size: 1.2rem;
font-weight: 700;
padding: 0.8rem;
text-align: center;
text-transform: uppercase;
letter-spacing: 0.02px;
}
.designation{
font-size: 1rem;
text-align: center;
text-transform: uppercase;
padding-bottom: 0.5rem;
}
.description{
font-size: 0.75rem;
text-align: center;
padding: 1rem 1rem;
}
.social-media{
display: flex;
justify-content: space-evenly;
}
.contactInfo{
padding: 5%;
}
.contactInfo ul{
position: relative;
}
.contactInfo ul li{
position: relative;
list-style: none;
margin: 10px 0;
cursor: pointer;
}
.contactInfo ul li .icon{
display: inline-block;
width: 30px;
font-size: 18px;
color: #03a9f4;
}
.contactInfo ul li span{
color: #fff;
font-weight: 300;
}
.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;
}
.progress-bar>div {
border: 1px white solid;
background-color: #fff;
height: 4px;
}
.skill-item{
padding: 5px;
}
.right-main-content{
padding: 2rem 3rem;
}
.right-title{
text-transform: uppercase;
font-size: 1.2rem;
font-weight: 700;
padding: 0.5rem;
letter-spacing: 1px;
}
.para{
padding: 0.5rem;
}
.box{
display: flex;
}
.box>.text{
padding: 0.5rem;
}
.box>.text{
padding: 0.5rem;
}
h6{
margin-top: 10px;
}
.box .year{
min-width: 150px;
}
.projects{
padding: 0.5rem;
}
@media (max-width: 673px){
.main-content {
grid-template-columns: repeat(1, 1fr);
width: 90%;
min-height: 1000px;
}
}