4167668e33
modified: valitovgaziz/html/index.html new file: valitovgaziz/html/saveContStyle.css new file: valitovgaziz/html/scripts.js modified: valitovgaziz/html/style.css Add save contacts button
123 lines
2.0 KiB
CSS
123 lines
2.0 KiB
CSS
@import url("saveContStyle.css");
|
|
|
|
:root {
|
|
--primary: #2c3e50;
|
|
--secondary: #3498db;
|
|
--light: #ecf0f1;
|
|
--dark: #1a252f;
|
|
--success: #2ecc71;
|
|
}
|
|
|
|
html {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
}
|
|
body {
|
|
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
line-height: 1.6;
|
|
color: #333;
|
|
min-width: 300px;
|
|
max-width: 1200px;
|
|
min-width: 500px;
|
|
margin: 10px auto 5px auto;
|
|
padding: 10px 20px;
|
|
background-color: #f9f9f9;
|
|
}
|
|
header {
|
|
background-color: var(--primary);
|
|
color: white;
|
|
padding: 2rem 0;
|
|
text-align: center;
|
|
margin-bottom: 2rem;
|
|
border-radius: 10px;
|
|
}
|
|
h1,
|
|
h2,
|
|
h3 {
|
|
color: var(--secondary);
|
|
}
|
|
h1 {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
.contact-info {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 2rem;
|
|
margin-bottom: 1rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
#telegram a {
|
|
color: inherit;
|
|
}
|
|
|
|
.section {
|
|
background: white;
|
|
padding: 2rem;
|
|
margin-bottom: 2rem;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
|
}
|
|
.skills-container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 1rem;
|
|
}
|
|
.skill-tag {
|
|
background-color: var(--secondary);
|
|
color: white;
|
|
padding: 0.5rem 1rem;
|
|
border-radius: 20px;
|
|
font-size: 0.9rem;
|
|
}
|
|
.timeline {
|
|
position: relative;
|
|
padding-left: 30px;
|
|
}
|
|
.timeline:before {
|
|
content: "";
|
|
position: absolute;
|
|
left: 10px;
|
|
top: 0;
|
|
bottom: 0;
|
|
width: 2px;
|
|
background: var(--secondary);
|
|
}
|
|
.timeline-item {
|
|
position: relative;
|
|
margin-bottom: 2rem;
|
|
}
|
|
.timeline-item:before {
|
|
content: "";
|
|
position: absolute;
|
|
left: -30px;
|
|
top: 5px;
|
|
width: 12px;
|
|
height: 12px;
|
|
border-radius: 50%;
|
|
background: var(--primary);
|
|
border: 2px solid var(--secondary);
|
|
}
|
|
.project-link {
|
|
display: inline-block;
|
|
color: var(--secondary);
|
|
text-decoration: none;
|
|
}
|
|
.project-link:hover {
|
|
text-decoration: underline;
|
|
}
|
|
footer {
|
|
text-align: center;
|
|
padding: 2rem 0;
|
|
color: var(--dark);
|
|
font-size: 0.9rem;
|
|
}
|
|
@media (max-width: 768px) {
|
|
.contact-info {
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
}
|