Game-Jaming/Frontend/Styles/AdminPage.css

102 lines
1.7 KiB
CSS
Raw Normal View History

2021-03-26 07:41:06 +00:00
body{
text-align: center;
}
2021-03-15 13:03:29 +00:00
.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;
display: inline-block;
font-weight: bold;
margin-bottom: 0;
2021-03-15 13:03:29 +00:00
}
.HeaderLeft {
float: left;
2021-03-26 07:41:06 +00:00
}
/*Create game jam*/
#createGameJam{
justify-content: center;
display: grid;
}
2021-03-26 07:41:06 +00:00
#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,
#keyWord {
2021-03-26 07:41:06 +00:00
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*/