-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
102 lines (84 loc) · 1.25 KB
/
styles.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
body {
background-color: #151515;
margin: 0 8px;
font-family: "Open Sans", sans-serif;
font-size: 16px;
}
h2 {
color: #fff;
margin: 0;
text-align: center;
}
p {
color: #949495;
margin: 0;
}
a {
color: #fff;
}
.contacts, .education, .projects, .about {
min-width: 640px;
max-width: 1080px;
margin: 0 auto 32px auto;
}
.education, .projects, .about {
padding: 8px;
}
.contacts {
min-height: 400px;
display: flex;
justify-content: center;
align-items: center;
}
.contacts_block {
display: flex;
flex-direction: column;
}
.contacts_block p{
padding: 32px 0;
text-align: center;
}
.photo {
width: 300px;
height: auto;
margin: 0 auto;
}
.icons_block {
display: flex;
flex-direction: row;
justify-content: center;
}
.icon {
height: 32px;
width: 32px;
margin: 0 8px;
}
.education_block {
display: flex;
flex-direction: row;
justify-content: flex-start;
padding: 8px 0;
}
.education_block p {
padding: 8px 0;
text-align: left;
}
.education_block_left {
width: 200px;
min-width: 200px;
}
.education_block_right {
width: 100%;
}
.project_block {
width: 100%;
margin-top: 16px;
}
.project_block p {
padding: 8px 0;
text-align: left;
}
.about p {
text-align: left;
padding: 8px 0;
}