You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
450 lines
7.5 KiB
CSS
450 lines
7.5 KiB
CSS
body {
|
|
background-color: #cddef3;
|
|
font-family: 'Redaction-Regular', serif;
|
|
background-size: cover;
|
|
background-position: center;
|
|
padding: 0;
|
|
color: #e26d3f;
|
|
}
|
|
|
|
#mute-btn {
|
|
font-family: 'Redaction-Regular', serif;
|
|
font-weight: bold;
|
|
font-size: 20px;
|
|
color: #e26d3f;
|
|
position: fixed;
|
|
padding: 25px;
|
|
right: 20px;
|
|
top: 20px;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
border: none;
|
|
background: transparent;
|
|
}
|
|
|
|
#mute-btn:hover {
|
|
color:#FCF6F1ff;
|
|
background-color:#e26d3f;
|
|
border-radius: 30px;
|
|
}
|
|
.container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: right;
|
|
max-width: 100%;
|
|
margin-top: 120px;
|
|
}
|
|
|
|
.post {
|
|
position: relative;
|
|
width: 40%;
|
|
margin: 20px;
|
|
margin-left: 600px;
|
|
margin-right: 20px;
|
|
margin-top: 20px;
|
|
border-radius: 10px;
|
|
overflow: hidden;
|
|
background-color: #FCF6F1ff;
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.interactions {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
padding: 10px;
|
|
}
|
|
|
|
.like-button {
|
|
background-color: transparent;
|
|
color: #e26d3f;
|
|
font-size: 20px;
|
|
border: none;
|
|
cursor: pointer;
|
|
outline: none;
|
|
}
|
|
|
|
.like-button:hover {
|
|
color:#0008ff;
|
|
}
|
|
|
|
.comment {
|
|
padding: 10px;
|
|
border-bottom: 1px solid #333;
|
|
margin: 20px;
|
|
}
|
|
|
|
.comment:last-child {
|
|
border-bottom: none;
|
|
padding-bottom: 2.3rem;
|
|
}
|
|
|
|
.comment-image {
|
|
display: inline-block;
|
|
padding: 0 25px;
|
|
height: 50px;
|
|
font-size: 16px;
|
|
line-height: 50px;
|
|
}
|
|
|
|
.comment-image img {
|
|
float: left;
|
|
margin: 0 10px 0 -25px;
|
|
height: 50px;
|
|
width: 50px;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.comment-text {
|
|
margin: 30px;
|
|
margin-top: 10px;
|
|
line-height: 24px;
|
|
}
|
|
|
|
.like-count {
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.post#user-post {
|
|
width: 40%;
|
|
margin-left: 600px;
|
|
margin-right: 20px;
|
|
margin-top: 20px;
|
|
margin-bottom: 200px;
|
|
border-radius: 10px;
|
|
overflow: hidden;
|
|
background-color: #FCF6F1ff;
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
#user-form {
|
|
width: 40%;
|
|
margin: 20px;
|
|
margin-left: 600px;
|
|
position: relative;
|
|
background-color: #FCF6F1ff;
|
|
margin-bottom: 100px;
|
|
}
|
|
|
|
#user-message2 {
|
|
height: 60px;
|
|
width: calc(100% - 80px);
|
|
padding: 8px;
|
|
margin: 16px;
|
|
border: 1px solid #e26d3f;
|
|
border-radius: 10px;
|
|
resize: vertical;
|
|
margin-top: 30px;
|
|
margin-left: 40px;
|
|
}
|
|
|
|
#username2 {
|
|
display: inline-block;
|
|
width: calc(100% - 80px);
|
|
padding: 8px;
|
|
margin: 10px;
|
|
border: 1px solid #e26d3f;
|
|
border-radius: 4px;
|
|
resize: vertical;
|
|
}
|
|
|
|
#user-message {
|
|
height: 100px;
|
|
}
|
|
|
|
#submitButton {
|
|
font-family: 'Redaction-Regular', serif;
|
|
cursor: pointer;
|
|
font-size: 13px;
|
|
position: absolute;
|
|
right: 10px;
|
|
padding: 10px;
|
|
background-color: transparent;
|
|
border-radius: 4px;
|
|
border-width: 0px;
|
|
box-shadow: rgba(0, 0, 0, 0.5) 0px 4px 4px 0px;
|
|
color: #e26d3f;
|
|
height: 40px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
transition: 0.9s;
|
|
}
|
|
|
|
#submitButton:hover {
|
|
font-weight: 550;
|
|
color: #e26d3f;
|
|
}
|
|
|
|
#user-message2:focus + submitButton {
|
|
color: #FCF6F1ff;
|
|
}
|
|
|
|
#username2,
|
|
#user-message2{
|
|
font-family: 'Redaction-Regular', serif;
|
|
font-size: 16px;
|
|
color: #000;
|
|
}
|
|
|
|
#home {
|
|
position: absolute;
|
|
top: 25px;
|
|
left: 40px;
|
|
width: 100px;
|
|
height: auto;
|
|
opacity: 0.6;
|
|
}
|
|
|
|
#home:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.letterBox {
|
|
line-height: 150%;
|
|
font-size: 17px;
|
|
padding: 30px;
|
|
margin: 60px;
|
|
max-width: 40%;
|
|
margin-top: 22px;
|
|
z-index: 1000;
|
|
border-radius: 10px;
|
|
overflow: hidden;
|
|
background-color:#FCF6F1ff;
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: right;
|
|
position: absolute;
|
|
font-family: 'Redaction-Regular', serif;
|
|
}
|
|
|
|
.letterContents {
|
|
width: 90%;
|
|
position: relative;
|
|
}
|
|
|
|
#closeButton {
|
|
color: #ee98b1;;
|
|
font-size: 40px;
|
|
cursor: pointer;
|
|
height: 30px;
|
|
}
|
|
|
|
#about {
|
|
position: absolute;
|
|
top: 20px;
|
|
left: 70px;
|
|
width: 80px;
|
|
height: auto;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
#about:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
#orb {
|
|
bottom: -200px;
|
|
left: -6px;
|
|
margin-top: 130px;
|
|
margin-right: 100px;
|
|
position: fixed;
|
|
width: 400px;
|
|
height: 400px;
|
|
background-color: #e26d3f;
|
|
border-radius: 50%;box-shadow: 0px 0px 150px 150px #e39898, 0px 0px 40px 40px #e39898 inset;
|
|
transition: transform;
|
|
transition-duration: 5s;
|
|
transition-timing-function: ease-in;
|
|
}
|
|
|
|
|
|
#message-div {
|
|
position: fixed;
|
|
top: 50%;
|
|
left: 50%;
|
|
width: 50%;
|
|
transform: translate(-50%, -50%);
|
|
text-align: center;
|
|
padding: 20px;
|
|
border-radius: 10px;
|
|
display: none;
|
|
z-index: 1000;
|
|
animation: details-show 2s;
|
|
color: white;
|
|
font-family: 'Redaction_35-Regular';
|
|
font-size: 25px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
#message-div a,
|
|
#message-div button {
|
|
text-decoration: none;
|
|
color: #1E33FAff;
|
|
background: transparent;
|
|
border: none;
|
|
font-family: 'Redaction_35-Regular';
|
|
font-size: 25px;
|
|
cursor: pointer;
|
|
transition: background-color 0.25s, color 0.25s;
|
|
}
|
|
|
|
@keyframes details-show {
|
|
from {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
|
|
@media only screen and (max-width: 767px) {
|
|
|
|
.comment-image img {
|
|
height: 50px;
|
|
width: 50px;
|
|
}
|
|
|
|
.comment-image {
|
|
font-size: 16px;
|
|
}
|
|
|
|
body {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.post {
|
|
width: 100%;
|
|
margin: 20px;
|
|
margin-left: 20px;
|
|
margin-right: 20px;
|
|
margin-top: 20px;
|
|
border-radius: 10px;
|
|
overflow: hidden;
|
|
background-color: #FCF6F1ff;
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
#orb {
|
|
bottom: -100px;
|
|
left: 100px;
|
|
width: 150px;
|
|
height: 150px;
|
|
box-shadow: 0px 0px 90px 80px #ee98b1, 0px 0px 20px 10px #ee98b1 inset;
|
|
}
|
|
|
|
#about {
|
|
top: 10px;
|
|
left: 40px;
|
|
width: 80px;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
#home {
|
|
top: 20px;
|
|
left: 20px;
|
|
width: 80px;
|
|
opacity: 0.6;
|
|
}
|
|
|
|
#user-form {
|
|
width: 100%;
|
|
margin: 20px;
|
|
margin-left: 20px;
|
|
position: relative;
|
|
background-color: #FCF6F1ff;
|
|
margin-bottom: 300px;
|
|
}
|
|
|
|
#user-message2 {
|
|
height: 60px;
|
|
width: calc(100% - 80px);
|
|
padding: 8px;
|
|
margin: 16px;
|
|
border: 1px solid #e26d3f;
|
|
border-radius: 10px;
|
|
resize: vertical;
|
|
margin-top: 30px;
|
|
margin-left: 40px;
|
|
}
|
|
|
|
#username2 {
|
|
display: inline-block;
|
|
width: calc(100% - 80px);
|
|
padding: 8px;
|
|
margin: 10px;
|
|
border: 1px solid #e26d3f;
|
|
border-radius: 4px;
|
|
resize: vertical;
|
|
}
|
|
|
|
#user-message {
|
|
height: 100px;
|
|
}
|
|
|
|
#submitButton {
|
|
cursor: pointer;
|
|
font-size: 13px;
|
|
font-family: 'Redaction_35-Regular', serif;
|
|
position: absolute;
|
|
right: 10px;
|
|
padding: 10px;
|
|
background-color: transparent;
|
|
border-radius: 4px;
|
|
border-width: 0px;
|
|
box-shadow: rgba(0, 0, 0, 0.5) 0px 4px 4px 0px;
|
|
color: #e26d3f;
|
|
height: 40px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
transition: 0.9s;
|
|
}
|
|
|
|
#submitButton:hover {
|
|
font-weight: 550;
|
|
color: #e26d3f;
|
|
}
|
|
|
|
#user-message2:focus + submitButton {
|
|
color: #FCF6F1ff;
|
|
}
|
|
|
|
.letterBox {
|
|
font-size: 17px;
|
|
padding: 30px;
|
|
margin-left: 20px;
|
|
margin-right: 20px;
|
|
border-radius: 10px;
|
|
overflow: hidden;
|
|
background-color: #FCF6F1ff;
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: right;
|
|
max-width: 100%;
|
|
margin-top: 140px;
|
|
position: static;
|
|
z-index: 1000;
|
|
}
|
|
|
|
|
|
#user-message2::placeholder,
|
|
#user-message2::-webkit-input-placeholder,
|
|
#user-message2::-moz-placeholder,
|
|
#user-message2:-ms-input-placeholder {
|
|
font-family: 'Redaction-Regular', serif;
|
|
font-size: 16px;
|
|
color: #cddef3;
|
|
}
|
|
|
|
#message-div {
|
|
font-size: 20px;
|
|
}
|
|
|
|
#message-div a,
|
|
#message-div button {
|
|
font-size: 20px;
|
|
}
|
|
}
|
|
|