sarsooxyz.pyreact/static/style.css

295 lines
4.2 KiB
CSS
Raw Normal View History

2019-02-17 00:00:31 +00:00
* {
2019-04-05 11:04:53 +01:00
box-sizing: border-box;
2019-02-07 13:54:26 +00:00
}
2019-02-17 00:00:31 +00:00
html {
2019-04-05 11:04:53 +01:00
font-family: "Lato", arial;
2019-02-16 15:30:12 +00:00
}
2019-02-17 00:00:31 +00:00
body {
2019-04-05 11:04:53 +01:00
background-color: #202124;
2019-02-07 15:46:08 +00:00
}
a {
2019-04-05 11:04:53 +01:00
color: white;
font-size: 20px;
/*text-shadow: 1px 1px 1px #aaa;*/
2019-02-07 13:54:26 +00:00
}
2019-02-16 15:30:12 +00:00
p {
2019-04-05 11:04:53 +01:00
color: white;
font-size: 20px;
padding: 10px;
2019-02-16 15:30:12 +00:00
}
2019-02-17 14:10:42 +00:00
.button {
2019-04-05 11:04:53 +01:00
background-color: #505050;
color: black;
border-radius: 10px;
display: inline-block;
margin: 4px auto;
cursor: pointer;
text-align: center;
padding: 15px;
text-decoration: none;
box-shadow: 2px 2px 4px black;
/*-webkit-transition-duration: 0.4s;
transition-duration: 0.4s;*/
2019-02-17 14:10:42 +00:00
}
.button:hover {
2019-04-05 11:04:53 +01:00
box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
2019-02-17 14:10:42 +00:00
}
.row {
2019-04-05 11:04:53 +01:00
margin: 30px;
}
2019-04-05 11:04:53 +01:00
.gallerystrip {
width: 100%;
margin: auto;
margin-top: 15px;
2019-02-17 00:00:31 +00:00
}
2019-04-05 11:04:53 +01:00
.gallerystrip img {
height: auto;
border: 10px solid #313439;
margin: 10px;
box-shadow: 4px 4px 7px #070707;
2019-02-17 10:04:54 +00:00
}
2019-04-05 11:04:53 +01:00
.profile {
background-color: #131313;
height: auto;
margin-top: 10px;
/*border: 8px solid #313439;*/
border-radius: 0px;
box-shadow: 7px 7px 8px black;
2019-02-17 10:04:54 +00:00
}
2019-04-05 11:04:53 +01:00
.profile img {
border-radius: 50%;
display: block;
margin-top: 10px;
margin-left: auto;
margin-right: auto;
margin-bottom: 10px;
border: 8px solid #212121;
box-shadow: 4px 4px 3px #0c0c0c;
2019-02-17 00:00:31 +00:00
}
2019-02-16 15:30:12 +00:00
2019-03-02 19:19:32 +00:00
h1.title {
2019-04-05 11:04:53 +01:00
color: white;
font-size: 6em;
font-family: "Megrim", arial;
text-shadow: 2px 2px 2px #aaa;
font-weight: bold;
display: block;
text-decoration: none;
background-color: #131313;
padding: 0px;
/*font-size: 16em;*/
width: 3em;
height: 1.3em;
text-align: center;
margin: auto;
box-shadow: 4px 4px 8px #000000;
2019-02-16 15:30:12 +00:00
}
2019-02-16 18:28:49 +00:00
2019-04-05 11:04:53 +01:00
.card {
/*background-color: grey;*/
background-color: #131313;
box-shadow: 4px 4px 8px black;
padding: 10px;
margin: 10px;
/*border-radius: 3px;*/
}
2019-04-05 11:04:53 +01:00
.card h1 {
text-align: center;
color: white;
text-shadow: 1px 1px 2px #4f4f4f;
}
.card img {
2019-04-05 11:04:53 +01:00
width: 100%;
border-radius: 3px;
margin-bottom: 8px;
box-shadow: 2px 2px 2px black;
margin-left: auto;
margin-right: auto;
}
.card p {
2019-04-05 11:04:53 +01:00
margin-top: 20px;
}
h1.sectiontitle {
2019-04-05 11:04:53 +01:00
text-align: center;
color: white;
font-family: "Megrim", sans-serif;
}
2019-02-17 00:00:31 +00:00
ul.navbar {
2019-04-05 11:04:53 +01:00
list-style-type: none;
border-radius: 5px 5px;
/*box-shadow: 3px 3px 1px grey;*/
margin: 10px;
padding: 0;
overflow: hidden;
background-color: #131313;
2019-02-16 18:28:49 +00:00
}
2019-02-17 00:00:31 +00:00
ul.navbar li {
2019-04-05 11:04:53 +01:00
float: left;
position: -webkit-sticky;
position: sticky;
top: 0;
2019-02-16 18:28:49 +00:00
}
2019-02-17 00:00:31 +00:00
ul.navbar li a {
2019-04-05 11:04:53 +01:00
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
text-shadow: 1px 1px 2px black;
-webkit-transition: background-color 0.4s;
transition: background-color 0.4s;
2019-02-17 00:00:31 +00:00
}
ul.navbar a:hover {
2019-04-05 11:04:53 +01:00
background-color: #080808;
2019-02-17 00:00:31 +00:00
}
2019-04-05 11:04:53 +01:00
ul.navbar li.right {
float: right;
}
2019-02-17 00:00:31 +00:00
2019-02-17 14:10:42 +00:00
footer p {
2019-04-05 11:04:53 +01:00
text-align: right;
font-size: 12px;
2019-02-17 14:10:42 +00:00
}
footer a {
2019-04-05 11:04:53 +01:00
margin-top: 10px;
margin-bottom: 10px;
text-align: right;
display: block;
color: grey;
font-size: 12px;
2019-02-17 14:10:42 +00:00
}
@media only screen and (max-width: 600px) {
2019-02-17 00:00:31 +00:00
ul.navbar li.right,
2019-04-05 11:04:53 +01:00
ul.navbar li {
float: none;
}
2019-02-16 18:28:49 +00:00
}
2019-04-05 11:04:53 +01:00
[class*=col-] {
float: left;
width: 100%;
}
2019-04-05 11:04:53 +01:00
[class*=pad-] {
float: left;
width: calc(100% - 20px);
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: */
2019-04-05 11:04:53 +01:00
.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%;
}
/* For desktop: */
2019-04-05 11:04:53 +01:00
.pad-2 {
width: calc(16.66% - 20px);
}
.pad-3 {
width: calc(25% - 20px);
}
.pad-4 {
width: calc(33.33% - 20px);
}
2019-02-17 00:00:31 +00:00
2019-04-05 11:04:53 +01:00
.pad-5 {
width: calc(41.66% - 20px);
}
.pad-6 {
width: calc(50% - 20px);
}
.pad-7 {
width: calc(58.33% - 20px);
}
.pad-8 {
width: calc(66.66% - 20px);
}
.pad-9 {
width: calc(75% - 20px);
}
.pad-10 {
width: calc(83.33% - 20px);
}
.pad-11 {
width: calc(91.66% - 20px);
}
.pad-12 {
width: calc(100% - 20px);
}
}
2019-02-17 00:00:31 +00:00
.row::after {
content: "";
clear: both;
display: table;
2019-02-16 18:28:49 +00:00
}
2019-04-05 11:04:53 +01:00
/*# sourceMappingURL=style.css.map */