Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/uPagge/uBlogger.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/css/_buttom.scss')
-rw-r--r--assets/css/_buttom.scss84
1 files changed, 84 insertions, 0 deletions
diff --git a/assets/css/_buttom.scss b/assets/css/_buttom.scss
new file mode 100644
index 0000000..590a29c
--- /dev/null
+++ b/assets/css/_buttom.scss
@@ -0,0 +1,84 @@
+a.button {
+ display: inline-block;
+ padding: 10px 20px;
+ max-width: 90%;
+ box-sizing: border-box;
+ text-decoration: none;
+ border-radius: 10px;
+ background-color: #333;
+ border: solid 2px #333;
+ color: #FFF;
+ text-align: center;
+
+ [theme=dark] & {
+ color: #FFF;
+ }
+}
+
+a.button:hover {
+ color: #333;
+ background-color: #FFF;
+}
+
+a.button-big {
+ padding: 15px 30px;
+ font-size: 160%;
+ font-weight: bold;
+}
+
+a.button-white {
+ background-color: #FFF;
+ color: #333;
+ border-color: #333;
+}
+
+a.button-white:hover {
+ background-color: #000;
+ color: #FFF;
+}
+
+a.button-black {
+ background-color: #000;
+ color: #FFF;
+ border-color: #FFF;
+}
+
+a.button-black:hover {
+ background-color: #FFF;
+ color: #333;
+}
+
+a.button-red {
+ background-color: #fb0021;
+ border: solid 2px #fb0021;
+}
+
+a.button-red:visited {
+ color: #ffffff;
+}
+
+a.button-red:hover {
+ background-color: #FFF;
+ color: #fb0021;
+}
+
+a.big-grey-button {
+ display: inline-block;
+ max-width: 90%;
+ box-sizing: border-box;
+ padding: 15px 30px;
+ background-color: #666;
+ border: solid 2px #555;
+ color: #FFF;
+ text-align: center;
+ text-decoration: none;
+ font-size: 160%;
+ font-weight: bold;
+ border-radius: 20px;
+ margin: 50px auto 0;
+}
+
+a.big-grey-button:hover {
+ background-color: #FFF;
+ color: #666;
+} \ No newline at end of file