anotherim-website/style.css

176 lines
3.7 KiB
CSS
Raw Normal View History

2024-11-18 13:52:49 +00:00
body,a,p,h1,h2,h3,h5{padding: 0; margin: 0}
body{
background-color: #000; /*Цвет фона всей страницы*/
2024-11-18 14:28:01 +00:00
color:#eee; /*Цвет текста всей страницы*/
2024-11-18 13:52:49 +00:00
}
.geist-mono-all{
font-family: "Geist Mono", monospace;
font-optical-sizing: auto;
font-weight: 100;
font-style: normal;
}
h1{
font-family: "Geist mono";
font-weight: 700;
font-size: 40px;
}
h2{
font-family: "Geist mono";
font-weight: 700;
2024-11-18 15:08:10 +00:00
font-size: 32px;
}
h3{
font-family: "Geist mono";
font-weight: 700;
font-size: 20px;
2024-11-18 13:52:49 +00:00
}
p, a, ul, li{
font-family: "Geist mono";
font-weight: 200;
}
/*КНОПКИ НА ГЛАВНОЙ СТРАНИЦЕ*/
.nav_butt_1:link, .nav_butt_1:visited {
box-sizing: content-box;
2024-11-18 14:28:01 +00:00
border: solid #eee 1px; /*Цвет рамки кнопки*/
color: #eee; /*Цвет текста кнопки*/
2024-11-18 13:52:49 +00:00
text-align: center;
text-decoration: none;
display: inline-block;
width: 120px;
padding-top: 10px;
padding-bottom: 10px;
margin-top: 10px;
}
.nav_butt_1:hover, .nav_butt_1:active {
2024-11-18 14:28:01 +00:00
background-color: #eee;/*цвет кнопки при наведении*/
2024-11-18 13:52:49 +00:00
color: #000; /*цвет текста кнопки при наведении*/
}
/*КНОПКИ НА СТРАНИЦАХ С БОКОВЫМ НАВИГАТОРОМ*/
.nav_butt_2:link, .nav_butt_2:visited {
box-sizing: content-box;
2024-11-18 14:28:01 +00:00
border: solid #eee 1px; /*Цвет рамки кнопки*/
color: #eee; /*Цвет текста кнопки*/
2024-11-18 13:52:49 +00:00
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 12px;
width: 120px;
padding-top: 10px;
padding-bottom: 10px;
margin-top: 10px;
}
.nav_butt_2:hover, .nav_butt_2:active {
2024-11-18 14:28:01 +00:00
background-color: #eee;/*цвет кнопки при наведении*/
2024-11-18 13:52:49 +00:00
color: #000; /*цвет текста кнопки при наведении*/
}
/*КНОПКИ КОНТЕНТА*/
.content_butt:link, .content_butt:visited {
font-weight: 500;
color: #989898; /*Цвет текста кнопки*/
text-align: center;
text-decoration: underline;
display: inline-block;
}
.content_butt:hover, .content_butt:active {
2024-11-18 14:28:01 +00:00
background-color: #eee;/*цвет кнопки при наведении*/
2024-11-18 13:52:49 +00:00
color: #000; /*цвет текста кнопки при наведении*/
}
/*СТИЛИ ГЛАВНОЙ СТРАНИЦЫ*/
.main_container{
max-width: 800px;
max-height: 100vh;
text-align: center;
margin-left: auto;
margin-right: auto;
padding-top: 200px;
}
.head{
}
.logo{
max-width: 80px;
padding-bottom: 30px;
}
.links{
padding-top: 100px;
justify-content: space-between;
display: flex;
}
/*СТИЛИ ВТОРИЧНЫХ СТРАНИЦ*/
.page_container{
max-height: 100vh;
text-align: center;
margin-left: auto;
margin-right: auto;
}
.nav_box{
height: 100vh;
2024-11-18 14:28:01 +00:00
border-right: solid 1px #eee;
2024-11-18 13:52:49 +00:00
width: 20%;
position: fixed;
padding-top: 10vh;
}
.content_wrap{
text-align: left;
width: 80%;
float: right;
display: block;
position: relative;
}
.navigation{
2024-11-18 15:08:10 +00:00
padding-top: 48px;
2024-11-18 13:52:49 +00:00
width: 130px;
margin:0 auto;
}
.content_box{
margin: 50px;
}
.logo_home, .logo_home:link, .logo_home:visited, .logo_home:hover, .logo_home:active {
border: none;
background-color: transparent;
}
2024-11-18 16:02:36 +00:00
.contacts{
margin: 0 auto;
padding-top: 40vh;
width: 300px;
}
2024-11-18 13:52:49 +00:00
2024-11-18 14:28:01 +00:00
/*новости и посты*/
.post_box{
2024-11-18 15:08:10 +00:00
width: 100%;
padding: 10px;
border: solid 1px rgba(238, 238, 238, 0.2); /*обводка новостного дропа*/
margin-bottom: 20px;
}
.post_name{
margin-bottom: 20px;
2024-11-18 15:28:38 +00:00
text-transform: uppercase;
2024-11-18 15:08:10 +00:00
}
.post_description{
margin-bottom: 20px;
}
.multiline{
display: -webkit-box;
-webkit-box-orient: vertical;
overflow: hidden;
-webkit-line-clamp: 2; /* Ограничение на 2 строки */
2024-11-18 14:28:01 +00:00
}
2024-11-18 15:28:38 +00:00
.post_date{
float: right;
}
.readmore{
}