Lewy
c7b7a78cc9
# Conflicts: # frontend/panel_organizatora/style.css # frontend/style.css # frontend/zalogowany_organizator/style.css
73 lines
1.1 KiB
CSS
73 lines
1.1 KiB
CSS
@import "../_global/header.css";
|
|
|
|
body {
|
|
margin: 0;
|
|
}
|
|
|
|
|
|
.container {
|
|
height: 100%;
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
.eventHeader {
|
|
text-align: center;
|
|
padding-top: 5px;
|
|
padding-bottom: 5px;
|
|
}
|
|
|
|
.event {
|
|
background-color: #0f64f2;
|
|
color: white;
|
|
border-style: solid;
|
|
border-width: 2px;
|
|
margin-top: 25px;
|
|
margin-right: 25px;
|
|
flex-direction: column;
|
|
flex-wrap: wrap;
|
|
height: auto;
|
|
|
|
|
|
}
|
|
|
|
.eventInside {
|
|
background-color: white;
|
|
color: #4C8BF5;
|
|
height: auto;
|
|
border: solid;
|
|
border-color: lightgray;
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
.eventInside>p {
|
|
color: lightgray;
|
|
}
|
|
|
|
.myButton {
|
|
background-color: #4C8BF5;
|
|
border-radius: 28px;
|
|
border: 1px solid #4C8BF5;
|
|
display: inline-block;
|
|
cursor: pointer;
|
|
color: #ffffff;
|
|
font-family: Arial;
|
|
font-size: 9px;
|
|
padding: 8px 13px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.dot {
|
|
height: 30px;
|
|
width: 30px;
|
|
color: white;
|
|
background-color: skyblue;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|