Padel-Tournaments-System/frontend/pojedynczy_turniej/style.css

114 lines
1.8 KiB
CSS
Raw Normal View History

@import "../_global/header.css";
@import "./tournament_detail_header.css";
/*0 layer*/
body {
background-color: #EBEBEB;
margin: 0;
}
/*1'st layer*/
.container {
height: 100%;
width: 100%;
display: flex;
justify-content: flex-end;
flex-flow: row wrap;
background-image: url(back.jpg);
}
.mainInfoBox {
height: 25vh;
width: 100%;
background-color: #0B4D39;
}
/*2'nd layer*/
.form {
/*Alignment*/
margin: auto;
width: 50%;
height: 75vh;
/*Inside*/
padding-left: 40px;
padding-top: 15px;
/*Visual*/
background-color: #FFFFFF;
/*Others*/
justify-content: center;
align-items: center;
}
.bookmarks {
/*Alignment*/
margin: auto;
width: 50%;
height: 5vh;
/*Others*/
justify-content: center;
align-items: center;
}
/*Elements*/
.descriptor {
/* Size */
left: 254px;
top: 554px;
/* Alignment */
margin-bottom: 0;
margin-top: 0;
display: flex;
align-items: center;
/* Text */
font-family: 'Montserrat', serif;
font-size: 20px;
line-height: 42px;
color: #000000;
}
/*##################*/
ul {
float: left;
width: 100%;
padding: 0;
margin: 0;
list-style: none;
/*background-color: #0B4D39;*/
}
li a {
display: block;
float: left;
text-align: center;
font-size: 1.2em;
width: 130px;
text-decoration: none;
color: black;
background-color: white;
padding: 10px 15px;
margin: 0px 1px 1px 0px;
border: 1px solid black;
border-radius: 3px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
box-shadow: 0px 2px 3px gray;
-moz-box-shadow: 0px 2px 3px gray;
-webkit-box-shadow: 0px 2px 3px gray;
}
li a:hover {
color: black;
background: #AFAFAF;
border: 1px solid black;
}