Files
anpdf/app/pub/css/an.css

541 lines
9.8 KiB
CSS
Raw Normal View History

2020-05-14 16:14:06 +03:00
header {
display: flex;
justify-content: space-between;
align-items: center;
}
2020-05-19 15:56:30 +03:00
header ul {
padding: 0px;
display: flex;
align-items: center;
}
2020-05-18 18:03:51 +03:00
header ul li {
list-style-type: none;
2020-05-19 15:56:30 +03:00
margin-right:17px;
2020-05-18 18:03:51 +03:00
}
2020-05-14 16:14:06 +03:00
header .lite-logo {
width:25%;
}
.lite-logo IMG {
width:100%;
}
2020-05-19 15:56:30 +03:00
#logo {
width: 200px;
}
2020-04-09 00:53:14 +03:00
body {
2020-04-29 14:41:23 +03:00
width: 80%;
2020-04-09 00:53:14 +03:00
margin: 0px auto;
margin-top: 2%;
background: #f5f5f5;
}
h1 {
font-size: 1.4em;
text-align: center;
}
#brand_title{
color: #4e4f55;
2020-04-09 01:23:56 +03:00
text-decoration:none;
text-transform: uppercase;
2020-04-09 00:53:14 +03:00
}
#page_title{
color: #4e4f55;
text-decoration:underline;
letter-spacing: 0.3px;
}
2020-04-09 01:23:56 +03:00
#redb{
color: red;
}
2020-04-30 00:51:53 +03:00
#the-canvas{
width:100%;
}
2020-04-09 01:23:56 +03:00
#redi{
color: red;
text-transform: lowercase;
font-style: italic;
2020-04-09 11:22:46 +03:00
font-size: 1.5em;
font-weight: bold;
2020-04-09 01:23:56 +03:00
}
2020-05-14 16:14:06 +03:00
#auth a {
color: #4d4e55;
2020-05-18 18:03:51 +03:00
font-size:1em;
2020-05-14 16:14:06 +03:00
font-weight:bold;
letter-spacing: 0.3px;
text-transform: uppercase;
}
2020-05-18 18:03:51 +03:00
#lk-menu {
display:flex;
justify-content: start;
align-items: center;
margin: 15px 0px 20px;
}
#lk-menu #menu_category, #lk-menu #menu_category ul {
padding: 0px;
}
#lk-menu #menu_category ul {
margin: 0px;
}
#lk-menu div, .header-div {
margin-right: 15px;
padding: 10px;
background: white;
border: 1px solid #b1bad0;
border-radius: 9px;
font-weight: bold;
}
#lk-menu div p, #lk-menu div a, .header-div a {
margin:0px;
color: #4d4e55;
}
#menu_category ul {
border-radius: 9px;
}
#menu_category ul li {
margin: 0px;
list-style-type: none;
float: left;
background: #7f7f7f;
}
#menu_category ul li:first-child{
border-radius: 9px 0px 0px 9px;
}
#menu_category ul li:last-child{
border-radius: 0px 9px 9px 0px;
}
#menu_category ul li.active {
background: #69c;
padding: 10px 20px;
}
#menu_category ul li a, #menu_category ul li {
color:white;
padding: 5px 10px;
display: block;
}
#lk-menu #years {
padding: 0px;
}
#lk-menu #years .fas {
position: relative;
right: 4px;
top: 2px;
}
2020-05-21 11:52:05 +03:00
#year_filter, #pages {
2020-05-18 18:03:51 +03:00
border: 0px;
background: white;
color: #4d4e55;
font-weight: bold;
font-size: 1em;
-ms-appearance: none;
appearance: none;
-moz-appearance: none;
-webkit-appearance: none;
font-family: times;
padding: 10px;
border-radius: 9px;
cursor: pointer;
margin-right: -7px;
outline: none;
}
2020-05-21 11:52:05 +03:00
#year_filter::-ms-expand, #pages::-ms-expand {
2020-05-18 18:03:51 +03:00
display: none;
}
2020-05-21 11:52:05 +03:00
#pages {
2020-05-21 12:25:30 +03:00
padding: 2px 4px;
2020-05-21 11:52:05 +03:00
color: #2c2e36;
}
2020-04-09 00:53:14 +03:00
#downloadtitle{
width: 100%;
background: #69c;
display: flex;
2020-04-29 19:57:50 +03:00
height: 50px;
2020-04-09 00:53:14 +03:00
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 1.1em;
2020-04-29 19:57:50 +03:00
margin: 0px auto;
2020-04-30 15:31:44 +03:00
box-sizing: border-box;
2020-04-09 00:53:14 +03:00
}
#downloadtitle a{
color:white;
}
2020-04-09 01:48:07 +03:00
#downarrow{
color:white;
padding: 8px;
}
2020-04-29 19:57:50 +03:00
#stuff-bar {
2020-04-13 12:23:42 +00:00
display: flex;
2020-04-13 15:25:57 +00:00
align-items: center;
2020-04-30 15:31:44 +03:00
width: 100%;
2020-04-29 19:57:50 +03:00
height: 50px;
background: #2c2e36;
margin: 0px auto;
2020-04-13 12:23:42 +00:00
color: white;
2020-04-29 19:57:50 +03:00
font-size: 1.4em;
justify-content: center;
2020-04-13 12:23:42 +00:00
}
2020-04-29 19:57:50 +03:00
#stuff-bar a {
color: white;
}
#zoomnav, #pagenav {
width: 45%;
2020-04-13 12:23:42 +00:00
display: flex;
2020-04-29 19:57:50 +03:00
justify-content: center;
2020-04-13 12:23:42 +00:00
align-items: center;
}
2020-04-29 19:57:50 +03:00
#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;
}
2020-05-21 11:52:05 +03:00
#currpage i {
2020-05-21 12:25:30 +03:00
font-size: .5em;
position: relative;
bottom: 2px;
2020-05-21 11:52:05 +03:00
}
2020-04-30 16:14:46 +03:00
.firstpage {
background: white;
border-radius: 31px;
padding: 3px 4px;
font-size: .9em;
text-align: center;
2020-04-30 16:16:36 +03:00
margin-right: 10px!important;
2020-04-30 16:14:46 +03:00
}
.firstpage i {
color: #2c2e36;
}
2020-04-09 01:23:56 +03:00
2020-04-09 00:53:14 +03:00
#pdfprogress {
text-align: center;
font-weight: bold;
2020-04-29 19:57:50 +03:00
margin: 20px;
2020-04-09 00:53:14 +03:00
font-size: 1.2em;
}
2020-05-08 13:22:22 +03:00
.book_small{
position:relative;
}
2020-05-12 21:15:26 +03:00
2020-05-14 16:14:06 +03:00
#container_form {
width: 100%;
margin-top: 10%;
2020-05-12 23:32:56 +03:00
text-align: center;
2020-05-14 16:14:06 +03:00
}
2020-05-12 23:32:56 +03:00
#form_title{
font-size: 18px;
}
2020-05-14 16:14:06 +03:00
#container_form p {
font-size: 1.3em;
margin-bottom: 8px;
display: flex;
font-weight: bold;
color: #181716;
}
2020-05-12 23:32:56 +03:00
input[type="email"],input[type="password"]{
2020-05-14 16:14:06 +03:00
background: #fff;
transition: all 800ms;
width: calc(100% - 50px);
border-radius: 3px 0 0 3px;
border: solid 1px #ccc;
border-right: none;
outline: none;
color: #999;
height: 37px;
line-height: 35px;
display: inline-block;
2020-05-12 23:32:56 +03:00
padding-left: 10px;
2020-05-14 16:14:06 +03:00
font-size: 16px;
box-sizing: border-box;
}
#container_form span.icon {
width: 50px;
transition: all 800ms;
justify-content: center;
color: #999;
border-radius: 0 3px 3px 0;
background: #e8e8e8;
display: flex;
border: solid 1px #ccc;
border-left: none;
font-size: 25px;
box-sizing: border-box;
align-items: center;
}
2020-05-12 23:32:56 +03:00
.submit {
padding: 13px 30px;
margin: 5px 0 20px 0;
font-size: 15px;
color: #fff;
2020-05-14 16:14:06 +03:00
background-color: #69c;
2020-05-12 23:32:56 +03:00
border: none;
cursor: pointer;
}
.submit:hover{
transition: all 0.5s;
background: #fff;
color: #2c536c;
}
.lib_container {
2020-05-18 18:03:51 +03:00
display: flex;
flex-direction: row;
justify-content: left;
flex-wrap: wrap;
2020-05-12 23:32:56 +03:00
}
2020-05-18 18:03:51 +03:00
.book_skeleton {
width:25%;
2020-05-19 15:56:30 +03:00
margin-bottom: 30px;
2020-05-18 18:03:51 +03:00
margin-top: 30px;
}
.book_mini {
width: 60%;
background: white;
border-radius: 7px;
border: 1px solid #cdd8e2;
text-align: center;
font-weight: bold;
2020-05-19 15:56:30 +03:00
padding: 2px;
box-sizing: border-box;
2020-05-18 18:03:51 +03:00
}
2020-05-12 23:32:56 +03:00
.book_mini img{
2020-05-18 18:03:51 +03:00
width:100%;
border-radius: 7px 7px 0px 0px;
}
.book_mini p{
color: #4d4e55;
text-decoration: underline;
letter-spacing: 0.3px;
2020-05-12 23:32:56 +03:00
}
2020-05-15 12:28:28 +03:00
#info {
margin-top: 5%;
font-weight: bold;
font-size: 1.2em;
text-align:center;
width: 100%;
}
#info span {
width: 100%;
display: block;
margin-top: 20px;
font-size: 1.2em;
}
#info span a {
color:#065eb5;
}
#error {
color: red;
font-weight: bold;
text-align: center;
margin-top: 5%;
font-size: 1.2em;
}
2020-05-16 01:20:36 +03:00
2020-05-18 18:03:51 +03:00
@media screen and (max-width: 1260px) {
2020-05-19 15:56:30 +03:00
.book_skeleton{
margin-top: 20px;
}
.book_mini{
width: 70%;
font-size: .9em;
}
}
@media screen and (max-width: 1100px) {
.book_skeleton{
margin-top: 15px;
}
#logo {
width: 170px;
}
header {
font-size: .9em;
}
2020-05-21 12:33:42 +03:00
#pages {
font-size: .9em;
}
2020-05-16 14:53:38 +03:00
}
2020-05-14 16:14:06 +03:00
@media screen and (max-width: 1000px) {
2020-05-19 15:56:30 +03:00
.book_mini{
width: 75%;
}
.book_skeleton{
margin-top: 10px;
}
2020-05-14 16:14:06 +03:00
header .lite-logo {
width: 30%;
}
2020-05-19 15:56:30 +03:00
#logo {
width: 150px;
}
header, #lk-menu {
font-size: .8em;
}
2020-05-14 16:14:06 +03:00
}
2020-05-12 23:32:56 +03:00
2020-05-14 16:14:06 +03:00
@media screen and (max-width: 768px) {
2020-05-21 12:33:42 +03:00
#pages {
font-size: .8em;
}
2020-05-14 16:14:06 +03:00
header .lite-logo {
width: 35%;
}
2020-05-19 15:56:30 +03:00
.book_skeleton{
width: 50%;
}
.book_mini{
width: 75%;
}
#logo {
width: 125px;
}
header, #lk-menu {
font-size: .7em;
}
header ul li {
margin-right: 6px;
}
.header-div, #lk-menu div {
padding: 6px;
margin-right: 6px;
}
#menu_category ul li, #menu_category ul li.active {
padding: 6px 10px;
}
#menu_category ul li a {
padding: 0px;
}
#year_filter {
padding:6px;
margin-right: 0px;
}
2020-05-21 12:41:42 +03:00
#zoomnav div, #pagenav div {
margin-right: 11px;
}
2020-05-21 12:43:01 +03:00
#zoomnav, #pagenav {
width: 48%;
}
2020-05-14 16:14:06 +03:00
}
2020-05-12 21:15:26 +03:00
2020-04-13 15:25:57 +00:00
@media screen and (max-width: 560px) {
2020-05-21 12:33:42 +03:00
#pages {
font-size: .7em;
}
2020-05-19 15:56:30 +03:00
body {
width:90%;
}
2020-05-14 16:14:06 +03:00
header .lite-logo {
width: 45%;
}
2020-04-13 15:58:56 +00:00
#brand_title, #page_title {
font-size: .8em;
}
2020-04-13 15:25:57 +00:00
#downloadtitle {
2020-04-24 08:56:20 +00:00
font-size: .75em;
2020-04-30 15:34:44 +03:00
padding: 10px;
2020-04-24 08:53:02 +00:00
line-height: 16px;
text-align: center;
2020-04-13 15:25:57 +00:00
}
2020-05-19 15:56:30 +03:00
.adv, .mob-hidden {
2020-04-13 15:51:01 +00:00
display:none;
}
2020-04-30 17:12:59 +03:00
#zoomnav div, #pagenav div {
margin-right: 10px;
}
2020-04-30 17:14:35 +03:00
#stuff-bar {
2020-04-30 17:15:56 +03:00
font-size: 1.25em;
2020-04-30 17:14:35 +03:00
}
2020-05-15 12:28:28 +03:00
#info, #info span {
font-size: 1em;
}
2020-05-19 15:56:30 +03:00
#logo, .mob-full {
width: 83%;
margin: 0px auto;
text-align: center;
}
header {
font-size:.9em;
}
header, header ul {
flex-wrap:wrap;
justify-content: center;
}
header ul li {
margin-right: 10px;
margin-top: 15px;
}
#auth {
position: absolute;
right: 20px;
top: 20px;
font-size: .9em;
}
#lk-menu {
font-size: .65em;
justify-content: center;
}
}
@media screen and (max-width: 460px) {
header {
font-size:.8em;
}
#logo, .mob-full {
width: 75%;
}
.book_skeleton {
width: 100%;
}
.book_mini {
width: 70%;
margin: 0px auto;
}
#lk-menu {
font-size: .6em;
}
#lk-menu div, #year_filter {
padding: 4px;
margin-right: 4px;
}
#menu_category ul li, #menu_category ul li.active {
padding: 4px 8px;
}
2020-04-13 15:25:57 +00:00
}
2020-05-19 15:56:30 +03:00
@media screen and (max-width: 390px) {
body {
width:98%;
}
#lk-menu {
font-size: .7em;
}
.small-mob-hidden {
display:none;
}
#menu_category ul li, #menu_category ul li.active {
padding: 6px 10px;
}
#lk-menu div, #year_filter {
padding: 6px;
margin-right: 6px;
}
}