39 lines
No EOL
782 B
CSS
39 lines
No EOL
782 B
CSS
* {
|
|
margin: 0;
|
|
padding: 2;
|
|
box-sizing: border-box;
|
|
}
|
|
body {
|
|
background-color: rgb(255, 255, 255);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.full {
|
|
width: 55%;
|
|
max-width: 1000px;
|
|
min-height: 100px;
|
|
background-color: rgb(245, 239, 231);
|
|
margin: 0px;
|
|
display: grid;
|
|
grid-template-columns: 2fr 4fr;
|
|
}
|
|
.left {
|
|
position: initial;
|
|
background-color: rgb(120, 120, 120);
|
|
padding: 20px;
|
|
|
|
}
|
|
.right {
|
|
position: initial;
|
|
background-color: rgb(190, 190, 206);
|
|
padding: 20px;
|
|
|
|
}
|
|
.image, .Contact, .Skills, .Language, .Hobbies, .title,
|
|
.Summary, .Experience, .Education, .project {
|
|
margin-bottom: 30px;
|
|
}
|
|
.h2 {
|
|
background-color: rgb(4, 96, 150);
|
|
} |