-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
106 lines (104 loc) · 1.75 KB
/
index.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
body {
box-sizing: border-box;
font-size: 16px;
font-family: "Montserrat", sans-serif;
background-color: #fcfbfa;
font-weight: 500;
display: grid;
justify-content: center;
}
.container {
display: grid;
grid-template-areas:
"names names"
"contact-info profile"
"skills education"
"languages experience";
gap: 4px;
max-width: 1200px;
min-height: fit-content;
}
.wrap {
background-color: #edbbc4;
border-radius: 25px;
padding: 2em;
}
.names {
grid-area: names;
display: grid;
justify-content: center;
}
.title {
text-transform: uppercase;
font-weight: 600;
letter-spacing: 1px;
font-family: "Roboto", sans-serif;
font-size: 2rem;
}
.image img {
position: relative;
border-radius: 50%;
margin: 2em;
}
.contact-info {
grid-area: contact-info;
}
.contact-info ul li {
list-style: none;
margin: 1em 0;
}
.icon {
display: inline-block;
font-size: 1.5rem;
}
.profile {
grid-area: profile;
}
.profile p {
line-height: 1.5em;
}
.skills {
grid-area: skills;
}
.skills ul li {
list-style: none;
margin: 1.5em 0;
}
.skills ul li span {
margin: 0.5em;
}
.education {
grid-area: education;
}
.ed ul li {
list-style: none;
margin: 1.5em 0;
display: flex;
flex-direction: column;
}
.languages {
grid-area: languages;
}
.languages ul li {
list-style: none;
margin: 1.5em 0;
}
.experience {
grid-area: experience;
}
@media (max-width: 1000px) {
.container {
display: grid;
grid-template-areas:
"names"
"profile"
"skills"
"education"
"experience"
"contact-info"
"languages";
gap: 4px;
max-width: 100vw;
min-height: fit-content;
}
}