-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a6024b2
commit 1690d6c
Showing
4 changed files
with
28 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// scss-lint:disable Comment | ||
/*! | ||
* Modesta v3.0.0 (https://modesta.alexflipnote.dev) | ||
* Modesta v3.0.0.1 (https://modesta.alexflipnote.dev) | ||
* Made by AlexFlipnote (https://alexflipnote.dev) | ||
* Licensed under MIT (https://github.com/AlexFlipnote/Modesta/blob/master/LICENSE) | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<html> | ||
<head> | ||
<link href="../dist/modesta.css" type="text/css" rel="stylesheet"> | ||
<script src="assets/change_theme.js"></script> | ||
</head> | ||
<body class="dark-theme"> | ||
|
||
<style> | ||
.buttons { flex-direction: column; } | ||
.btn { background: red; } | ||
</style> | ||
|
||
<section class="buttons"> | ||
<a class="btn sun-flower-text">Button</a> | ||
<a class="btn COLOUR no-dark-hover">Button no darken hover</a> | ||
<br><br> | ||
<a class="btn animation COLOUR">Button animation</a> | ||
<a class="btn animation hover COLOUR">Button animation and hover</a> | ||
<br><br> | ||
<a class="btn hover COLOUR">Button hover</a> | ||
<a class="btn hover-scale COLOUR">Button scale hover</a> | ||
<a class="btn hover-scale-inset COLOUR">Button scale inset hover</a> | ||
</section> | ||
|
||
</body> | ||
</html> |