xppl/app/static/css/style.css

370 lines
5.6 KiB
CSS
Raw Normal View History

2018-06-01 23:53:25 +02:00
@import url("../fonts/fonts_style.css");
2018-05-20 00:10:01 +02:00
*{
2018-06-03 12:29:08 +02:00
font-family: "Archivo Narrow";
2018-06-01 23:53:25 +02:00
}
p{
font-size: 18px;
2018-06-01 23:53:25 +02:00
2018-06-09 14:27:43 +02:00
}
a{
text-decoration: none;
color: black;
2018-05-20 00:10:01 +02:00
}
.navigation ul{
list-style-type: none;
margin: 0;
2018-06-01 23:53:25 +02:00
margin-top: 40px;
2018-05-20 00:10:01 +02:00
padding: 0;
}
.navigation ul li {
float: left;
}
.navigation ul li a{
display: block;
color: black;
text-align: center;
2018-06-08 17:56:20 +02:00
padding: 14px 18px;
font-size: 18px;
2018-06-01 23:53:25 +02:00
text-decoration: none;
2018-05-20 00:10:01 +02:00
}
.navigation ul li:active a{
font-style: italic;
}
.clearfix::after {
content: "";
clear: both;
display: table;
}
2018-05-23 14:12:24 +02:00
.container{
2018-06-08 17:56:20 +02:00
padding: 0px 10px;
2018-05-20 00:10:01 +02:00
2018-05-27 22:11:35 +02:00
}
2018-06-01 23:53:25 +02:00
2018-06-09 14:27:43 +02:00
#fileformat{
text-align: center;
}
2018-06-01 23:53:25 +02:00
.lead{
font-size: 18px;
2018-06-01 23:53:25 +02:00
2018-06-09 14:27:43 +02:00
}
.about{
font-size: 16px;
2018-06-01 23:53:25 +02:00
}
2018-06-02 00:08:38 +02:00
.library_table{
border-spacing:0; /* Removes the cell spacing via CSS */
}
2018-05-27 22:11:35 +02:00
.library_table a{
text-decoration: none;
color: black;
}
2018-06-02 00:08:38 +02:00
.library_table th{
font-size: 20px;
2018-06-02 00:20:54 +02:00
cursor: pointer;
}
2018-06-02 00:08:38 +02:00
2018-06-02 00:20:54 +02:00
th.headerSortUp{
background-color: #E8E8E8!important;
}
th.headerSortDown{
background-color: #E8E8E8!important;
2018-06-02 00:08:38 +02:00
}
2018-06-02 00:20:54 +02:00
.library_table tbody tr:hover{
2018-06-02 00:08:38 +02:00
background-color: #E8E8E8!important;
}
2018-05-27 22:11:35 +02:00
.library_table .title_col{
font-size: 20px;
2018-06-02 00:20:54 +02:00
padding-left: 10px;
2018-05-27 22:11:35 +02:00
}
.library_table .author_col{
2018-06-02 00:08:38 +02:00
font-size: 15px;
2018-05-27 22:11:35 +02:00
}
.library_table li{
2018-06-02 00:08:38 +02:00
list-style-type:none;
2018-06-03 23:33:16 +02:00
text-align: center;
2018-06-02 00:08:38 +02:00
padding-right: 5px;
display: inline-block;
2018-05-27 22:11:35 +02:00
}
2018-06-03 23:33:16 +02:00
#plus {
text-align: center;
font-size: 10px;
}
2018-05-27 22:11:35 +02:00
.library_table tr:nth-child(even){
2018-06-02 00:08:38 +02:00
background-color: #fafafa;
2018-05-23 14:12:24 +02:00
}
2018-06-01 23:53:25 +02:00
#title_xppl{
font-size: 46px;
2018-06-01 23:53:25 +02:00
cursor: pointer;
}
2018-05-23 14:12:24 +02:00
.header input{
height:40px;
width: 500px;
2018-06-07 10:46:14 +02:00
font-size: 24px;
2018-05-23 14:12:24 +02:00
font-weight: bold;
}
.author input{
height:20px;
width: 500px;
font-size: 16px;
}
2018-05-31 18:26:22 +02:00
.search input{
margin: 0;
float: left;
width: 320px;
2018-05-31 18:26:22 +02:00
height: 36px;
2018-06-07 10:46:14 +02:00
font-size: 18px;
2018-05-31 18:26:22 +02:00
font-weight: regular;
padding: 2px;
2018-06-07 10:46:14 +02:00
background:rgb(240, 240, 240);
2018-05-31 18:26:22 +02:00
border:0px;
box-shadow: inset 0 0 5px rgba(000,000,000, 0.2);
2018-05-31 18:26:22 +02:00
}
.button {
height:40px;
font-size: 18px;
padding:6px 15px;
left:0px;
border:0px solid #dbdbdb;
2018-06-08 16:15:09 +02:00
background-color: #686d72;
2018-05-31 18:26:22 +02:00
color:#fafafa;
}
.button:hover {
background-color:red;
color: #fafafa;
}
2018-05-23 14:12:24 +02:00
.footer{
width: 100%;
font-family:'Courier New';
font-weight:100;
font-size:12px;
margin-top: 200px;
2018-05-23 14:12:24 +02:00
}
.footer pre{
width: 60px;
margin:0 auto;
font-family:'Courier New';
2018-06-01 23:53:25 +02:00
2018-05-23 14:12:24 +02:00
}
.footer p{
width: 30%;
margin:0 auto;
text-align: center;
font-family:'Courier New';
2018-06-01 23:53:25 +02:00
font-size: 12px;
2018-05-20 00:10:01 +02:00
}
2018-05-31 18:04:05 +02:00
2018-06-05 12:22:09 +02:00
.ui-tabs-vertical { width: 100em; border-top: 0;}
2018-06-09 10:35:23 +02:00
.ui-tabs-vertical a { text-decoration: none; color: black;}
2018-06-06 11:39:38 +02:00
.ui-tabs-vertical .ui-tabs-nav { padding: .2em .2em .2em .2em; float: left; width: 15em; -webkit-appearance: none;}
2018-06-09 10:35:23 +02:00
.ui-tabs-vertical .ui-tabs-nav li { clear: left; width: 100%; border-bottom-width: 0 !important; border-right-width: 0 !important; margin: 0 -1px .2em 0; list-style-type: none; }
2018-05-31 18:04:05 +02:00
.ui-tabs-vertical .ui-tabs-nav li a { display:block; }
2018-06-09 10:35:23 +02:00
.ui-tabs-vertical .ui-tabs-nav li.ui-tabs-active { padding-bottom: 0; padding-right: .1em; border-right-width: 0; background-color: yellow !important; list-style-type: none;}
.ui-tabs-vertical .ui-tabs-panel { padding: 1em; float: left; width: 50em; font-size: 12px; list-style-type: none;}
2018-06-06 16:07:39 +02:00
#newstext{
width: 100%;
margin: 0;
padding: 3px;
top:0;
left:0;
position: fixed;
2018-06-07 10:46:14 +02:00
font-size: 18px;
background-color: yellow;
}
div.marquee {
white-space:no-wrap;
overflow:hidden;
}
div.marquee > div.marquee-text {
font-style: italic;
white-space:nowrap;
display:inline;
width:auto;
}
2018-06-03 12:29:08 +02:00
#home_content{
width: 70%;
}
#app{
position: fixed;
bottom: 0;
right: 0;
width: 30%;
height: 100%;
}
.messages{
position: absolute;
bottom: 40px;
display: block;
width:100%;
padding: 10px;
margin: 0px;
height: 100%;
2018-06-08 16:15:09 +02:00
background-color: #b4b9be;
2018-06-03 12:29:08 +02:00
overflow-y: scroll;
overflow-x: hidden;
color: white;
word-wrap:break-word;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
z-index: -100000;
}
.new-message {
position: absolute;
bottom: 0;
display: block;
width:100%;
margin:0;
padding:0;
z-index: 100000;
}
.control{
display: block;
margin:0!important;
padding:0!important;
}
.field{
display: block;
margin:0!important;
padding:0!important;
}
.new-message input{
width: 80%;
display: block;
margin:0px!important;
padding:0px!important;
height: 40px;
2018-06-08 16:15:09 +02:00
font-size: 16px;
2018-06-03 12:29:08 +02:00
word-wrap: break-word;
word-break: break-all;
float: left;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
}
.new-message button{
display: block;
width: 20%;
float: right;
margin:0px!important;
padding:0px!important;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
}
.messages .user{
font-size: 16px;
margin-bottom: -15px;
margin-top: 20px;
}
.messages .msg{
2018-06-08 16:15:09 +02:00
font-size: 24px;
2018-06-03 12:29:08 +02:00
margin: 0px;
margin-top: -15px;
margin-bottom: 10px;
padding: 0;
}
.messages .time{
font-size: 16px;
font-style: italic;
}
2018-06-06 16:07:39 +02:00
.widget {
resize: both;
overflow: hidden;
2018-06-07 19:27:09 +02:00
width: 800px;
height: 200px;
2018-06-06 16:07:39 +02:00
display: inline-block;
2018-06-07 19:27:09 +02:00
position: relative;
left: 400px;
2018-06-06 16:07:39 +02:00
}
.widget iframe {
width: 100%;
height: 100%;
border: none;
}
.grid {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
grid-gap: 2px;
align-items: top;
justify-items: center;
}
@media screen and (max-width: 900px) {
.grid{
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-gap: 2px;
align-items: center;
justify-items: center;
}
}
@media screen and (max-width: 400px) {
.grid{
display: grid;
grid-template-columns: 1fr;
align-items: center;
justify-items: center;
}
}
.gridbox {
display: inline-block;
padding-left: 5px;
align-items: center;
justify-items: center;
}
.gridbox:hover{
opacity: 0.5;
2018-06-07 19:27:09 +02:00
}