.gitignore file changes didn't apply already cached files
This commit is contained in:
parent
1b91a31c1f
commit
5e33ee2b69
|
@ -1,6 +1,5 @@
|
|||
### Project specific ###
|
||||
|
||||
config.php
|
||||
*.db
|
||||
*~
|
||||
*.secret
|
||||
|
|
|
@ -1,10 +0,0 @@
|
|||
<?php
|
||||
// To activate this you have to put
|
||||
// NGINX's redirect directives. The
|
||||
// service is perfectly functional
|
||||
// with this as false
|
||||
|
||||
$fancy_urls = true;
|
||||
$theme_name = "minimalpunk";
|
||||
|
||||
?>
|
|
@ -1,84 +0,0 @@
|
|||
<?php include("../colors.php"); ?>
|
||||
65;6002;1cbody{
|
||||
background-color: <?= $color_bg ?>;
|
||||
}
|
||||
#parent-container{
|
||||
width: 80%;
|
||||
margin: 50px auto;
|
||||
/*background-color: <?= $color_main ?>;*/
|
||||
}
|
||||
#header{
|
||||
text-align: right;
|
||||
padding: 20px;
|
||||
background-color: <?= $color_main ?>;
|
||||
}
|
||||
|
||||
.columns-container{
|
||||
display: flex;
|
||||
}
|
||||
.column{
|
||||
flex: 25%;
|
||||
}
|
||||
.question-container{
|
||||
flex: 75%;
|
||||
}
|
||||
|
||||
/* user profile styling */
|
||||
#user-container{
|
||||
/*background-color: black;*/
|
||||
text-align: center;
|
||||
background-color: <?= $color_3 ?>;
|
||||
padding: 30px;
|
||||
margin: 0px;
|
||||
}
|
||||
#user-name{
|
||||
font-size: 30px;
|
||||
font-weight: bold;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
#user-bio{
|
||||
|
||||
}
|
||||
|
||||
/* Form column */
|
||||
.form-column{
|
||||
background-color: <?= $color_2 ?>;
|
||||
padding: 10px;
|
||||
}
|
||||
.form-column textarea{
|
||||
width: 100%;
|
||||
height: 80px;
|
||||
}
|
||||
|
||||
/* Questions */
|
||||
.question-container{
|
||||
padding: 10px;
|
||||
background-color: <?= $color_main ?>;
|
||||
}
|
||||
.question{
|
||||
margin: 20px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.question-username{
|
||||
font-size: 20px;
|
||||
font-weight: bold;
|
||||
padding-bottom: 15px;
|
||||
text-decoration: none;
|
||||
}
|
||||
.question-text{
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.question-date{
|
||||
float: right;
|
||||
}
|
||||
|
||||
.answer{
|
||||
padding: 10px;
|
||||
margin-top: 15px;
|
||||
margin-left: 40px;
|
||||
}
|
||||
|
||||
/* Footer */
|
||||
#footer{
|
||||
background-color: <?= $color_bg ?>;
|
||||
}
|
Loading…
Reference in New Issue