update appearance
This commit is contained in:
80
forms.html
80
forms.html
@@ -14,86 +14,14 @@
|
|||||||
|
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background-image: url('https://files.libcom.org/files/images/library/anarchists.jpg');
|
background-color: #F5F5F5;
|
||||||
background-repeat: no-repeat;
|
font-family: Copperplate;
|
||||||
background-attachment: fixed;
|
|
||||||
-webkit-background-size: cover;
|
|
||||||
-moz-background-size: cover;
|
|
||||||
-o-background-size: cover;
|
|
||||||
background-size: cover;
|
|
||||||
min-height: 100vh;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
footer{
|
footer{
|
||||||
margin-top: auto;
|
margin-top: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.h-divider{
|
|
||||||
margin-left: auto;
|
|
||||||
margin-right: auto;
|
|
||||||
height:1px;
|
|
||||||
width:80%;
|
|
||||||
border-top:1px solid gray;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (min-width: 768px) {
|
|
||||||
.row.equal {
|
|
||||||
display: flex;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.inherit_height
|
|
||||||
{
|
|
||||||
width:inherit;
|
|
||||||
height:100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.rgba-gradient {
|
|
||||||
background: -webkit-linear-gradient(45deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7) 100%);
|
|
||||||
}
|
|
||||||
|
|
||||||
.rgba-gradient:hover {
|
|
||||||
background: -webkit-linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9) 100%);
|
|
||||||
}
|
|
||||||
|
|
||||||
.card {
|
|
||||||
background-color: rgba(42, 42, 42, 0.2);
|
|
||||||
}
|
|
||||||
|
|
||||||
.md-form label {
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
|
|
||||||
h6 {
|
|
||||||
line-height: 1.7;
|
|
||||||
}
|
|
||||||
|
|
||||||
label {
|
|
||||||
color: #000000;
|
|
||||||
}
|
|
||||||
|
|
||||||
input {
|
|
||||||
color: #000000;
|
|
||||||
}
|
|
||||||
|
|
||||||
.black-background {background-color:#ffffff;}
|
|
||||||
.white {color:#ffffff;}
|
|
||||||
.black {color:#000000;}
|
|
||||||
|
|
||||||
|
|
||||||
.about white {
|
|
||||||
color: white;
|
|
||||||
font-size: 14px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.a {
|
|
||||||
text-decoration:none;
|
|
||||||
color:red;
|
|
||||||
}
|
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
@@ -104,8 +32,8 @@ input {
|
|||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row col-md-12">
|
<div class="row col-md-12">
|
||||||
<div class="col-12 col-md pl-5">
|
<div class="col-12 col-md pl-5">
|
||||||
<h2 class='text-light'>tasklist</h2>
|
<h2 class='text-dark'>tasklist</h2>
|
||||||
<h5 class='text-light'>
|
<h5 class='text-dark'>
|
||||||
enter your name to make yourself happy
|
enter your name to make yourself happy
|
||||||
</h5>
|
</h5>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
2
main.go
2
main.go
@@ -238,7 +238,7 @@ func GetNextNDaysOfName(n int, name time.Weekday, current time.Time) []time.Time
|
|||||||
return result
|
return result
|
||||||
}
|
}
|
||||||
|
|
||||||
const DB_NAME = "./tasklist.db"
|
const DB_NAME = "./tasklistJson.db"
|
||||||
const FORMS_NAME = "./forms.html"
|
const FORMS_NAME = "./forms.html"
|
||||||
const TASK_DAY = time.Tuesday
|
const TASK_DAY = time.Tuesday
|
||||||
const AMOUNT_DAYS = 4
|
const AMOUNT_DAYS = 4
|
||||||
|
|||||||
Reference in New Issue
Block a user