cg-select/src/style/ExemplePage.scss

114 lines
1.9 KiB
SCSS
Raw Normal View History

2022-11-11 17:21:42 +03:00
.header {
width: 100%;
border-radius: 5px;
display: flex;
align-items: center;
2022-11-17 21:21:06 +03:00
flex-direction: column;
2022-11-11 17:21:42 +03:00
background-color: #2a2f3b;
margin-bottom: 8px;
h1 {
font-size: 57px;
color: white;
font-family: 'Times New Roman', Times, serif;
2022-11-17 21:21:06 +03:00
margin: 40px 0 12px 0;
}
&__logoBox {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
2022-11-11 17:21:42 +03:00
}
&__logo {
2022-11-17 21:21:06 +03:00
width: 13%;
height: 16%;
2022-11-11 17:21:42 +03:00
border: 1px solid #525252;
2022-11-17 21:21:06 +03:00
border-radius: 50%;
margin: 22px 0 0 29px;
}
.navlist {
display: flex;
justify-content: space-around;
margin: 15px 0 30px 0;
padding: 0;
width: 230px;
li {
display: inline;
list-style: none;
text-decoration: none;
a {
color: white;
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
}
2022-11-11 17:21:42 +03:00
}
}
.content {
margin-top: 15px;
2022-12-19 21:15:47 +03:00
// background-color: #6b6d76;
2022-11-11 17:21:42 +03:00
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
}
2022-12-19 21:15:47 +03:00
2022-11-11 17:21:42 +03:00
.example-select {
width: 100%;
2022-12-19 21:15:47 +03:00
background-color: #5c5c5c;
border-radius: 5px;
margin: 15px 0 0 0;
//padding: 0 13px 13px 13px;
2022-11-11 17:21:42 +03:00
&_title {
2022-12-19 21:15:47 +03:00
height: 45px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
2022-11-11 17:21:42 +03:00
color: white;
2022-12-19 21:15:47 +03:00
padding: 20px 0 0 40px;
margin: 0 0 30px 0;
background-color: #2a2f3b;
2022-11-11 17:21:42 +03:00
font-size: 20px;
}
2022-12-19 21:15:47 +03:00
2022-11-11 17:21:42 +03:00
&_submit {
width: 200px;
height: 35px;
border-radius: 10px;
border: none;
margin-top: 20px;
cursor: pointer;
transition: 1s;
-webkit-transition: 1s;
-moz-transition: 1s;
-ms-transition: 1s;
-o-transition: 1s;
&:hover {
background-color: #d7d7d7;
transition: 1s;
-webkit-transition: 1s;
-moz-transition: 1s;
-ms-transition: 1s;
-o-transition: 1s;
}
}
}
2022-12-19 21:15:47 +03:00
pre{
}