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

134 lines
2.2 KiB
CSS
Raw Normal View History

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-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-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-04-13 15:25:57 +00:00
@media screen and (max-width: 560px) {
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-04-13 15:51:01 +00:00
.adv {
display:none;
}
2020-04-30 17:12:59 +03:00
#zoomnav div, #pagenav div {
margin-right: 10px;
}
2020-04-13 15:25:57 +00:00
}