sarsooxyz.pyreact/static/style.css

117 lines
1.7 KiB
CSS
Raw Normal View History

2019-02-17 00:00:31 +00:00
* {
box-sizing: border-box;
2019-02-07 13:54:26 +00:00
}
2019-02-17 00:00:31 +00:00
html {
font-family: 'Open Sans', arial;
2019-02-16 15:30:12 +00:00
}
2019-02-17 00:00:31 +00:00
body {
background-color: #111725;
2019-02-07 15:46:08 +00:00
}
a {
color: white;
2019-02-16 18:28:49 +00:00
font-size: 20px;
2019-02-17 00:00:31 +00:00
/*text-shadow: 1px 1px 1px #aaa;*/
2019-02-07 13:54:26 +00:00
}
2019-02-16 15:30:12 +00:00
p {
color: white;
2019-02-17 00:00:31 +00:00
font-size: 20px;
padding: 10px;
2019-02-16 15:30:12 +00:00
}
2019-02-17 00:00:31 +00:00
.gallerystrip img {
height: auto;
margin: 0px;
border: 6px solid #484c55;
}
div.gallerystrip {
width: 100%;
margin: auto;
}
2019-02-16 15:30:12 +00:00
2019-02-17 00:00:31 +00:00
h1.title {
color: white;
font-size: 14vw;
font-family: 'Megrim', arial;
text-shadow: 2px 2px 2px #aaa;
background-color: #070c1a;
2019-02-16 18:28:49 +00:00
padding: 0px;
2019-02-17 00:00:31 +00:00
width: 45vw;
2019-02-16 18:28:49 +00:00
height: 18vw;
2019-02-16 15:30:12 +00:00
text-align: center;
margin: auto;
}
2019-02-16 18:28:49 +00:00
2019-02-17 00:00:31 +00:00
ul.navbar {
2019-02-16 18:28:49 +00:00
list-style-type: none;
2019-02-17 00:00:31 +00:00
border-radius: 5px 15px;
box-shadow: 5px 5px grey;
margin: 10px;
2019-02-16 18:28:49 +00:00
padding: 0;
overflow: hidden;
2019-02-17 00:00:31 +00:00
background-color: #1e2028;
2019-02-16 18:28:49 +00:00
}
2019-02-17 00:00:31 +00:00
ul.navbar li {
2019-02-16 18:28:49 +00:00
float: left;
position: -webkit-sticky;
position: sticky;
top: 0;
}
2019-02-17 00:00:31 +00:00
ul.navbar li a {
2019-02-16 18:28:49 +00:00
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
2019-02-17 00:00:31 +00:00
-webkit-transition: background-color 0.4s;
url_for('static', filename='style.css') transition: background-color 0.4s;
}
ul.navbar a:hover {
background-color: #00030a;
}
ul.navbar li.right {float: right;}
@media only screen and (max-width: 500px) {
ul.navbar li.right,
ul.navbar li {float: none;}
2019-02-16 18:28:49 +00:00
}
2019-02-17 00:00:31 +00:00
[class*="col-"] {
float: left;
width: 100%;
2019-02-16 18:28:49 +00:00
}
2019-02-17 00:00:31 +00:00
@media only screen and (min-width: 768px) {
/* For desktop: */
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}
}
.row::after {
content: "";
clear: both;
display: table;
2019-02-16 18:28:49 +00:00
}