Files
anpdf/app/pub/css/an.css
Andrey Kuvshinov 897a21b336 add styles libs
2020-05-12 23:32:56 +03:00

195 lines
3.2 KiB
CSS

body {
width: 80%;
margin: 0px auto;
margin-top: 2%;
background: #f5f5f5;
}
h1 {
font-size: 1.4em;
text-align: center;
}
#brand_title{
color: #4e4f55;
text-decoration:none;
text-transform: uppercase;
}
#page_title{
color: #4e4f55;
text-decoration:underline;
letter-spacing: 0.3px;
}
#redb{
color: red;
}
#the-canvas{
width:100%;
}
#redi{
color: red;
text-transform: lowercase;
font-style: italic;
font-size: 1.5em;
font-weight: bold;
}
#downloadtitle{
width: 100%;
background: #69c;
display: flex;
height: 50px;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 1.1em;
margin: 0px auto;
box-sizing: border-box;
}
#downloadtitle a{
color:white;
}
#downarrow{
color:white;
padding: 8px;
}
#stuff-bar {
display: flex;
align-items: center;
width: 100%;
height: 50px;
background: #2c2e36;
margin: 0px auto;
color: white;
font-size: 1.4em;
justify-content: center;
}
#stuff-bar a {
color: white;
}
#zoomnav, #pagenav {
width: 45%;
display: flex;
justify-content: center;
align-items: center;
}
#zoomnav div, #pagenav div {
margin-right: 15px;
}
#zoomnav span {
cursor: pointer;
}
#currpage {
background: white;
color: #2c2e36;
padding: 2px 10px;
border-radius: 8px;
font-weight: bold;
font-size: 1.3em;
}
.firstpage {
background: white;
border-radius: 31px;
padding: 3px 4px;
font-size: .9em;
text-align: center;
margin-right: 10px!important;
}
.firstpage i {
color: #2c2e36;
}
#pdfprogress {
text-align: center;
font-weight: bold;
margin: 20px;
font-size: 1.2em;
}
.book_small{
position:relative;
}
#container_form{
width:450px;
height: 500px;
margin: 100px auto 0 auto;
text-align: center;
margin: 100px auto 0 auto;
text-align: center;
}
#form_title{
font-size: 18px;
}
input[type="email"],input[type="password"]{
width: 300px;
height:50px;
font-size: 18px;
margin-bottom: 25px;
border-radius: 4px;
padding-left: 10px;
}
.submit {
padding: 13px 30px;
margin: 5px 0 20px 0;
font-size: 15px;
color: #fff;
background-color: #2ca8c6;
border: none;
border-bottom: 4px solid #6ee9fd;
cursor: pointer;
}
.submit:hover{
transition: all 0.5s;
background: #fff;
color: #2c536c;
}
.lib_container {
display: grid;
grid-gap: 5px;
grid-template-columns: repeat(auto-fit, 300px);
grid-template-rows: repeat(2, 400px);
}
.book_mini img{
border: 1px solid black;
padding: 4px;
}
@media screen and (max-width: 560px) {
#brand_title, #page_title {
font-size: .8em;
}
#downloadtitle {
font-size: .75em;
padding: 10px;
line-height: 16px;
text-align: center;
}
.adv {
display:none;
}
#zoomnav div, #pagenav div {
margin-right: 10px;
}
#stuff-bar {
font-size: 1.25em;
}
}