| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- *{margin:0;padding:0;}
- body{
- font-family: monospace;
- background: #152730;
- box-sizing: border-box;
- padding: 25px;
- }
- h1{
- text-align: center;
- margin-bottom: 15px;
- font-size: 50px;
- }
- .metaData{
- text-align: center;
- margin-bottom: 15px;
- }
- .article{
- background: #C4C6C0;
- width: 75vw;
- box-sizing: border-box;
- padding: 50px;
- margin: auto;
- margin-bottom: 50px;
- }
- .paragraph{
- text-indent: 50px;
- margin-bottom: 22px;
- text-align: justify;
- font-size: 22px;
- line-height: 1.8;
- }
- #createComment{
- display: flex;
- flex-direction: column;
- align-items: center;
- width: 75vw;
- background: #C4C6C0;
- box-sizing: border-box;
- margin: auto;
- padding: 25px;
- margin-bottom: 50px;
- }
- #createComment > *{
- margin: 10px;
- }
- #createComment label{
- display: flex;
- flex-direction: column;
- width: 60%;
- }
- #nameInput{
- font-size: 16px;
- }
- #commentInput{
- font-size: 16px;
- }
- input[type=submit]{
- border: none;
- background: black;
- color: white;
- padding: 10px;
- cursor: pointer;
- font-size: 20px;
- box-shadow: 0 0 5px black;
- }
- input[type=submit]:hover{
- background: white;
- color: black;
- }
- input[type=submit]:active{
- box-shadow: none;
- }
- #comments{
- display: flex;
- flex-direction: column;
- align-items: center;
- width: 75vw;
- background: #C4C6C0;
- box-sizing: border-box;
- margin: auto;
- padding-bottom: 25px;
- }
- #comments > *{
- margin: 10px;
- }
- .comment{
- display: flex;
- flex-direction: column;
- width: 75%;
- background: white;
- padding: 25px;
- }
- .comment h3{
- font-size: 16px;
- }
- .comment > div{
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 15px;
- }
- .comment > p{
- font-size: 16px;
- }
|