99 lines
1.7 KiB
CSS
Executable File
99 lines
1.7 KiB
CSS
Executable File
body{
|
|
text-align: center;
|
|
}
|
|
.HeaderPanel {
|
|
position: fixed;
|
|
overflow: hidden;
|
|
background-color: rgb(33, 37, 41);
|
|
padding: 10px 10px;
|
|
top: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.HeaderPanel a {
|
|
text-align: center;
|
|
color: rgba(255, 255, 255, .75);
|
|
padding: 6px;
|
|
text-decoration: none;
|
|
font-size: 18px;
|
|
line-height: 25px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.HeaderTitle {
|
|
text-align: center;
|
|
}
|
|
|
|
.HeaderLeft {
|
|
float: left;
|
|
}
|
|
|
|
/*Create game jam*/
|
|
|
|
#createGameJam{
|
|
justify-content: center;
|
|
display: grid;
|
|
}
|
|
#createGameJam input{
|
|
display: block;
|
|
position: center;
|
|
|
|
}
|
|
|
|
#startTime {
|
|
border-radius: 15px;
|
|
color: #474747;
|
|
background-color: rgba(255, 255, 255, .55);
|
|
border: double;
|
|
filter: invert(90%);
|
|
}
|
|
|
|
#endTime {
|
|
border-radius: 15px;
|
|
color: #474747;
|
|
background-color: rgba(255, 255, 255, .55);
|
|
border: double;
|
|
filter: invert(90%);
|
|
}
|
|
|
|
#startDate {
|
|
border-radius: 15px;
|
|
color: #474747;
|
|
background-color: rgba(255, 255, 255, .55);
|
|
border: double;
|
|
filter: invert(90%);
|
|
}
|
|
|
|
#endDate {
|
|
border-radius: 15px;
|
|
color: #474747;
|
|
background-color: rgba(255, 255, 255, .55);
|
|
border: double;
|
|
filter: invert(90%);
|
|
}
|
|
|
|
#nameOfGameJam {
|
|
background-color: rgb(18, 18, 18);
|
|
color: rgba(255, 255, 255, .55);
|
|
border-radius: 15px;
|
|
border: double;
|
|
}
|
|
|
|
|
|
|
|
#description {
|
|
background-color: rgb(18, 18, 18);
|
|
color: rgba(255, 255, 255, .55);
|
|
border-radius: 15px;
|
|
border: double;
|
|
width:400px;
|
|
height:250px;
|
|
}
|
|
|
|
#indsend {
|
|
border-radius: 15px;
|
|
color: rgba(255, 255, 255, .55);
|
|
background-color: rgb(18, 18, 18);
|
|
border: double;
|
|
}
|
|
/*Create Game Jam end*/ |