forked from itsecd/web-base
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyleSheet3.css
More file actions
116 lines (103 loc) · 2.22 KB
/
StyleSheet3.css
File metadata and controls
116 lines (103 loc) · 2.22 KB
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
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #EEE2DC;
color: #123C69;
display: flex;
justify-content: center;
}
.resume {
background-color: #EDC7B7;
width: 100%;
max-width: 700px;
padding: 40px;
border-radius: 15px;
box-shadow: 0 10px 25px #123C69;
}
.resume__top-section {
display: flex;
gap: 40px;
margin-bottom: 30px;
border-bottom: 2px solid #123C69;
padding-bottom: 30px;
}
.top-section__identity-column {
flex: 0 0 250px;
text-align: center;
}
.top-section__about-column {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
}
.identity-column__avatar {
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
border: 4px solid #AC3B69;
margin-bottom: 15px;
}
.identity-column__title {
margin: 10px 0 5px;
font-size: 20px;
color: #123C69;
}
.identity-column__birth-date {
color: #123C69;
font-size: 20px;
margin-bottom: 10px;
}
.identity-column__github-link {
display: inline-block;
text-decoration: none;
background-color: #123C69;
color: white;
padding: 8px 16px;
border-radius: 20px;
font-weight: bold;
transition: background 0.3s;
}
.identity-column__github-link:hover {
background-color: #AC3B69;
}
.resume__bottom-section {
margin-top: 20px;
}
.bottom-section__bottom-element {
margin-bottom: 30px;
}
.about-column__subtitle {
color: #AC3B69;
border-left: 4px solid #AC3B69;
padding-left: 10px;
margin-bottom: 15px;
font-size: 1.4rem;
}
.about-column__text {
line-height: 1.5;
}
.bottom-element__subtitle {
border-left: 4px solid;
padding-left: 10px;
}
.bottom-element__tags {
list-style: none;
padding: 0;
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.tags__item {
background-color: #EEE2DC;
color: #123C69;
padding: 5px 12px;
border-radius: 5px;
font-size: 20px;
font-weight: 600;
}
.bottom-element__skills-category {
margin-bottom: 10px;
font-weight: bold;
display: block;
}