-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
1,151 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
html, body { | ||
height: 100%; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
body { | ||
font-family: Arial, sans-serif; | ||
color: #333; | ||
background: url('assets/images/title.png') no-repeat center center fixed; | ||
background-size: cover; /* Растягиваем на весь экран без обрезки */ | ||
} | ||
|
||
header { | ||
background-color: rgba(0, 68, 102, 0.9); | ||
padding: 20px 0; | ||
} | ||
|
||
header .container { | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
max-width: 1200px; | ||
margin: 0 auto; | ||
padding: 0 20px; | ||
} | ||
|
||
header .logo { | ||
max-height: 80px; /* Ограничиваем высоту логотипа */ | ||
} | ||
|
||
.logo-caption-container { | ||
display: flex; | ||
align-items: center; | ||
gap: 10px; /* Расстояние между логотипом и текстом */ | ||
} | ||
|
||
header .top-caption { | ||
font-size: 24px; | ||
font-weight: bold; | ||
color: #ffffff; | ||
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); | ||
} | ||
|
||
header nav ul { | ||
list-style: none; | ||
display: flex; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
header nav ul li { | ||
margin-left: 20px; | ||
} | ||
|
||
header nav ul li a { | ||
text-decoration: none; | ||
color: white; | ||
font-size: 16px; | ||
} | ||
|
||
section { | ||
max-width: 1200px; | ||
margin: 0 auto; | ||
background: rgba(255, 255, 255, 0.8); | ||
border-radius: 10px; | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); | ||
padding: 40px 20px; | ||
} | ||
|
||
footer { | ||
background-color: rgba(0, 68, 102, 0.9); | ||
color: white; | ||
text-align: center; | ||
padding: 20px 0; | ||
margin-top: 20px; | ||
} | ||
|
||
.team-section { | ||
display: flex; | ||
flex-direction: column; | ||
gap: 40px; | ||
} | ||
|
||
.team-department { | ||
margin-bottom: 40px; | ||
} | ||
|
||
.team-department h2 { | ||
color: #2c3e50; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.team-member { | ||
display: inline-block; | ||
width: 20%; | ||
text-align: center; | ||
margin: 10px; | ||
} | ||
|
||
.team-member img { | ||
width: 100px; | ||
height: 100px; | ||
border-radius: 50%; | ||
object-fit: cover; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
html, body { | ||
height: 100%; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
body { | ||
font-family: Arial, sans-serif; | ||
color: #333; | ||
background: url('assets/images/title.png') no-repeat center center fixed; | ||
background-size: cover; /* Растягиваем на весь экран без обрезки */ | ||
} | ||
|
||
header { | ||
background-color: rgba(0, 68, 102, 0.9); | ||
padding: 20px 0; | ||
} | ||
|
||
header .container { | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
max-width: 1200px; | ||
margin: 0 auto; | ||
padding: 0 20px; | ||
} | ||
|
||
header .logo { | ||
max-height: 80px; /* Ограничиваем высоту логотипа */ | ||
} | ||
|
||
.logo-caption-container { | ||
display: flex; | ||
align-items: center; | ||
gap: 10px; /* Расстояние между логотипом и текстом */ | ||
} | ||
|
||
header .top-caption { | ||
font-size: 24px; | ||
font-weight: bold; | ||
color: #ffffff; | ||
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); | ||
} | ||
|
||
header nav ul { | ||
list-style: none; | ||
display: flex; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
header nav ul li { | ||
margin-left: 20px; | ||
} | ||
|
||
header nav ul li a { | ||
text-decoration: none; | ||
color: white; | ||
font-size: 16px; | ||
} | ||
|
||
section { | ||
max-width: 1200px; | ||
margin: 0 auto; | ||
background: rgba(255, 255, 255, 0.8); | ||
border-radius: 10px; | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); | ||
padding: 40px 20px; | ||
} | ||
|
||
footer { | ||
background-color: rgba(0, 68, 102, 0.9); | ||
color: white; | ||
text-align: center; | ||
padding: 20px 0; | ||
margin-top: 20px; | ||
} | ||
|
||
.team-section { | ||
display: flex; | ||
flex-direction: column; | ||
gap: 40px; | ||
} | ||
|
||
.team-department { | ||
margin-bottom: 40px; | ||
} | ||
|
||
.team-department h2 { | ||
color: #2c3e50; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.team-member { | ||
display: inline-block; | ||
width: 20%; | ||
text-align: center; | ||
margin: 10px; | ||
} | ||
|
||
.team-member img { | ||
width: 100px; | ||
height: 100px; | ||
border-radius: 50%; | ||
object-fit: cover; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
html, body { | ||
height: 100%; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
body { | ||
font-family: Arial, sans-serif; | ||
color: #333; | ||
background: url('assets/images/title.png') no-repeat center center fixed; | ||
background-size: cover; /* Растягиваем на весь экран без обрезки */ | ||
} | ||
|
||
header { | ||
background-color: rgba(0, 68, 102, 0.9); | ||
padding: 20px 0; | ||
} | ||
|
||
header .container { | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
max-width: 1200px; | ||
margin: 0 auto; | ||
padding: 0 20px; | ||
} | ||
|
||
header .logo { | ||
max-height: 80px; /* Ограничиваем высоту логотипа */ | ||
} | ||
|
||
.logo-caption-container { | ||
display: flex; | ||
align-items: center; | ||
gap: 10px; /* Расстояние между логотипом и текстом */ | ||
} | ||
|
||
header .top-caption { | ||
font-size: 24px; | ||
font-weight: bold; | ||
color: #ffffff; | ||
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); | ||
} | ||
|
||
header nav ul { | ||
list-style: none; | ||
display: flex; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
header nav ul li { | ||
margin-left: 20px; | ||
} | ||
|
||
header nav ul li a { | ||
text-decoration: none; | ||
color: white; | ||
font-size: 16px; | ||
} | ||
|
||
section { | ||
max-width: 1200px; | ||
margin: 0 auto; | ||
background: rgba(255, 255, 255, 0.8); | ||
border-radius: 10px; | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); | ||
padding: 40px 20px; | ||
} | ||
|
||
footer { | ||
background-color: rgba(0, 68, 102, 0.9); | ||
color: white; | ||
text-align: center; | ||
padding: 20px 0; | ||
margin-top: 20px; | ||
} | ||
|
||
.team-section { | ||
display: flex; | ||
flex-direction: column; | ||
gap: 40px; | ||
} | ||
|
||
.team-department { | ||
margin-bottom: 40px; | ||
} | ||
|
||
.team-department h2 { | ||
color: #2c3e50; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.team-member { | ||
display: inline-block; | ||
width: 20%; | ||
text-align: center; | ||
margin: 10px; | ||
} | ||
|
||
.team-member img { | ||
width: 100px; | ||
height: 100px; | ||
border-radius: 50%; | ||
object-fit: cover; | ||
} |
Oops, something went wrong.