-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
90 lines (81 loc) · 1.43 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
body,
html {
margin: 0;
padding: 0;
box-sizing: border-box;
overflow-x: hidden;
background-color: #2a2a2e;
}
.main {
display: grid;
grid-template-columns: repeat(3, 33%);
grid-template-rows: minmax(100vh, auto);
width: 60%;
margin: auto;
background-color: #ffffff;
color: #2b343d;
}
h3 {
display: inline !important;
}
.main__column1 {
grid-row: span 1;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding: 0 2em;
}
.main__column1--picture {
width: 9em;
height: 9em;
border-radius: 50%;
background-image: url(./okerekePic.jpg);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
.main__column1__contact {
margin-top: 1em;
overflow-wrap: break-word;
display: flex;
flex-direction: column;
}
.main__column1__contact i {
padding: 7px;
}
.main__column1__skills hr {
color: #2b343d;
width: 50%;
margin-top: -0.5em;
}
.main__column1__skills {
line-height: 3em;
overflow-wrap: break-word;
color: #2b343d;
}
.main__column1__skills--box {
width: auto;
height: auto;
background-color: #2b343d;
color: #ffffff;
border-radius: 0.5em;
padding: 5px;
}
.main__column2 {
grid-column: span 2;
}
.main__column2 h3 {
display: inline;
}
.main__column2__about {
background-color: #2b343d;
color: #ffffff;
padding: 1em;
}
@media only screen and (max-width: 768px) {
.main {
width: 100%;
}
}