Skip to content
Permalink
095dc2c9b8
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
110 lines (94 sloc) 1.42 KB
@charset "utf-8";
/* CSS Document */
body {
background-color: white;
}
ul li {
float: right;
margin: 30px;
list-style-type: none;
color: white;
margin-top: 0px;
}
a {
text-decoration: none;
color: black;
}
header {
border: 1px solid grey;
height: 45px;
width: 98%;
padding: 10px 16px;
background-color: grey;
border-radius: 0.5em;
}
button,
a {
background-color: #3578e5;
color: white;
padding: 14px 20px;
margin: 18px 10px;
border: none;
cursor: pointer;
width: 15%;
font-weight: bold;
font-size: 15px;
}
.forumlist {
width: 60%;
background-color: #d8d4d4;
padding: 3% 5%;
margin: 2% auto;
}
input {
width: 70%;
}
form {
width: unset !important;
border: unset !important;
}
.create-forum {
background-color: #c1b7b7;
width: 70%;
height: 100px;
background-color: white;
margin-top: 70px;
margin: 10% auto;
}
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
transition: 0.3s;
width: 100%;
background: white;
}
.card:hover {
box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}
.container {
padding: 2px 16px;
}
footer {
border: 2px solid black;
width: 100%;
height: 35px;
margin-top: 20px;
background-color: black;
color: white;
}
.comment-btn {
width: 20%;
float: right;
background: white;
color: black;
border: 1px solid;
}
.align-forum {
float: left;
}
.update-message {
margin: auto;
width: 80%;
}
textarea {
width: 100%;
}