css (1)
laptop batter yalmost dead 😟
This commit is contained in:
parent
8a680efd74
commit
020f9e2128
2 changed files with 61 additions and 0 deletions
|
@ -37,6 +37,16 @@ h1 {
|
||||||
|
|
||||||
img {
|
img {
|
||||||
max-width: 256px;
|
max-width: 256px;
|
||||||
|
border-radius: 10px;
|
||||||
|
padding: 3px;
|
||||||
|
-webkit-transition: border-radius 0.1s ease-out;
|
||||||
|
-moz-transition: border-radius 0.1s ease-out;
|
||||||
|
-o-transition: border-radius 0.1s ease-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
img:hover {
|
||||||
|
cursor: pointer;
|
||||||
|
border-radius: 5px
|
||||||
}
|
}
|
||||||
|
|
||||||
button {
|
button {
|
||||||
|
@ -44,9 +54,59 @@ button {
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
background-color: #1c1c1c;
|
background-color: #1c1c1c;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
border-radius: 30px;
|
||||||
|
-webkit-transition: border-radius 0.4s ease-out;
|
||||||
|
-moz-transition: border-radius 0.4s ease-out;
|
||||||
|
-o-transition: border-radius 0.4s ease-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
button:hover {
|
||||||
|
border-radius: 10px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
input {
|
||||||
|
border: none;
|
||||||
|
padding: 0.5em;
|
||||||
|
background-color: #1c1c1c;
|
||||||
|
cursor: pointer;
|
||||||
|
margin: 2px;
|
||||||
|
border-radius: 30px;
|
||||||
|
-webkit-transition: border-radius 0.4s ease-out;
|
||||||
|
-moz-transition: border-radius 0.4s ease-out;
|
||||||
|
-o-transition: border-radius 0.4s ease-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
input:focus {
|
||||||
|
border-radius: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
input:hover {
|
||||||
|
border-radius: 10px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type="file"]::file-selector-button {
|
||||||
|
border: none;
|
||||||
|
padding: 0.5em;
|
||||||
|
background-color: #1c1c1c;
|
||||||
|
cursor: pointer;
|
||||||
|
border-radius: 30px;
|
||||||
|
-webkit-transition: border-radius 0.4s ease-out;
|
||||||
|
-moz-transition: border-radius 0.4s ease-out;
|
||||||
|
-o-transition: border-radius 0.4s ease-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type="file"]::file-selector-button:hover {
|
||||||
|
border-radius: 10px;
|
||||||
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
.image {
|
.image {
|
||||||
margin-bottom: 2em;
|
margin-bottom: 2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
hr.thin{
|
||||||
|
width:50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
@ -172,6 +172,7 @@
|
||||||
</form>
|
</form>
|
||||||
</details>
|
</details>
|
||||||
</div>
|
</div>
|
||||||
|
<hr class="thin">
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% else %}
|
{% else %}
|
||||||
<i>No images found :(</i>
|
<i>No images found :(</i>
|
||||||
|
|
Loading…
Add table
Reference in a new issue