136 lines
2.5 KiB
CSS
136 lines
2.5 KiB
CSS
@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");
|
|
|
|
body {
|
|
margin: 0;
|
|
font-family: "Inter", sans-serif;
|
|
}
|
|
|
|
.navbar {
|
|
margin: 0;
|
|
padding: 10px;
|
|
border: solid;
|
|
border-color: grey;
|
|
border-width: 0;
|
|
border-bottom-width: 1px;
|
|
background-color: white;
|
|
width: 100%;
|
|
position: fixed;
|
|
}
|
|
.navbar .selected {
|
|
border: solid;
|
|
border-color: #f1b739;
|
|
border-width: 0;
|
|
border-bottom-width: 2px;
|
|
}
|
|
.postDiv {
|
|
padding-top: 120px;
|
|
}
|
|
|
|
.accountform {
|
|
margin-left: 20%;
|
|
margin-right: 20%;
|
|
}
|
|
.accountform input {
|
|
padding: 7px;
|
|
border: solid;
|
|
border-width: 1px;
|
|
border-color: grey;
|
|
width: calc(100% - 15px);
|
|
font-size: 16px;
|
|
border-radius: 8px;
|
|
}
|
|
.accountform .flash {
|
|
padding: 7px;
|
|
border: solid;
|
|
border-width: 1px;
|
|
border-color: #f1b739;
|
|
width: calc(100% - 15px);
|
|
font-size: 16px;
|
|
border-radius: 8px;
|
|
}
|
|
.accountform button {
|
|
padding: 7px;
|
|
border: solid;
|
|
border-width: 1px;
|
|
color: black;
|
|
border-color: grey;
|
|
background-color: white;
|
|
font-size: 16px;
|
|
width: 100%;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.navbar a {
|
|
color: black;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.navbar .right {
|
|
float: right;
|
|
padding-right: 5px;
|
|
}
|
|
|
|
.navbar .r {
|
|
padding-right: 15px;
|
|
}
|
|
|
|
.post {
|
|
margin: 10px;
|
|
padding: 5px;
|
|
margin-bottom: 10px;
|
|
border-radius: 10px;
|
|
background-color: rgb(250, 250, 250);
|
|
}
|
|
|
|
.post img {
|
|
min-height: 200px;
|
|
max-height: 300px;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.post button {
|
|
background-color: rgb(250, 250, 250);
|
|
border: solid;
|
|
border-color: rgb(197, 197, 197);
|
|
border-width: 1px;
|
|
border-radius: 6px;
|
|
font-size: 16px;
|
|
font-family: "Inter", sans-serif;
|
|
}
|
|
.post button:hover {
|
|
border-color: #f1b739;
|
|
}
|
|
|
|
.post .commentdiv input {
|
|
background-color: rgb(250, 250, 250);
|
|
border: solid;
|
|
border-color: rgb(197, 197, 197);
|
|
border-width: 1px;
|
|
border-radius: 6px;
|
|
font-size: 16px;
|
|
margin-top: 5px;
|
|
font-family: "Inter", sans-serif;
|
|
}
|
|
.post hr {
|
|
color: rgb(255, 255, 255);
|
|
background-color: rgb(255, 255, 255);
|
|
border-color: rgb(255, 255, 255);
|
|
}
|
|
.post .commentsdiv {
|
|
background-color: #f5f5f5;
|
|
padding: 5px;
|
|
border-radius: 10px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.post .username {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.post .date {
|
|
color: rgb(175, 175, 175);
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
} |