Skip to content

Commit 98716d9

Browse files
Update
Co-Authored-By: JehanKandy <[email protected]>
1 parent 09ffdf5 commit 98716d9

File tree

9 files changed

+10
-74
lines changed

9 files changed

+10
-74
lines changed

jkcss/v101-alpha2/buttons/button.css

Lines changed: 0 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,3 @@
1-
@import url("https://fonts.googleapis.com/css2?family=Kanit&family=Roboto&display=swap");
2-
:root {
3-
--jk-blue: #1672fd;
4-
--jk-blue-hover: #025ce4;
5-
--text-color: white;
6-
--jk-gray: grey;
7-
--jk-gray-hover: rgb(114, 114, 114);
8-
--jk-green: #1b8b57;
9-
--jk-green-hover: #147045;
10-
--jk-red: #ca2d3dee;
11-
--jk-red-hover: #b32432ee;
12-
--jk-yellow: #ff9900;
13-
--jk-yellow-hover: #ff9900e3;
14-
--jk-lightblue: #54b4d3;
15-
--jk-lightblue-hover: #54b3d3ea;
16-
--jk-purple: #A020F0;
17-
--title-font-family: "Kanit", sans-serif;
18-
--jk-site-font: "Roboto", sans-serif;
19-
}
20-
21-
.jk-btn, .jk-blue {
22-
padding: 15px 25px;
23-
transition: 0.4s;
24-
border-radius: 5px;
25-
}
26-
27-
.jk-btn:hover, .jk-blue:hover {
28-
cursor: pointer;
29-
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
30-
}
31-
321
.no-border, .jk-info:hover, .jk-info, .jk-yellow:hover, .jk-yellow, .jk-red:hover, .jk-red, .jk-green:hover, .jk-green, .jk-gray:hover, .jk-gray, .jk-blue:hover, .jk-blue {
332
border: none;
343
color: var(--text-color);

jkcss/v101-alpha2/buttons/button.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

jkcss/v101-alpha2/buttons/button.scss

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
@import "../root";
21

32
.no-border{
43
border: none;
@@ -8,7 +7,6 @@
87
.jk-blue{
98
background-color: var(--jk-blue);
109
@extend .no-border;
11-
@extend .jk-btn;
1210
}
1311
.jk-blue:hover{
1412
background-color: var(--jk-blue-hover);

jkcss/v101-alpha2/jkcss.css

Lines changed: 2 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,4 @@
11
@import url("https://fonts.googleapis.com/css2?family=Kanit&family=Roboto&display=swap");
2-
@import url("https://fonts.googleapis.com/css2?family=Kanit&family=Roboto&display=swap");
3-
:root {
4-
--jk-blue: #1672fd;
5-
--jk-blue-hover: #025ce4;
6-
--text-color: white;
7-
--jk-gray: grey;
8-
--jk-gray-hover: rgb(114, 114, 114);
9-
--jk-green: #1b8b57;
10-
--jk-green-hover: #147045;
11-
--jk-red: #ca2d3dee;
12-
--jk-red-hover: #b32432ee;
13-
--jk-yellow: #ff9900;
14-
--jk-yellow-hover: #ff9900e3;
15-
--jk-lightblue: #54b4d3;
16-
--jk-lightblue-hover: #54b3d3ea;
17-
--jk-purple: #A020F0;
18-
--title-font-family: "Kanit", sans-serif;
19-
--jk-site-font: "Roboto", sans-serif;
20-
}
21-
22-
.jk-btn, .jk-blue {
23-
padding: 15px 25px;
24-
transition: 0.4s;
25-
border-radius: 5px;
26-
}
27-
28-
.jk-btn:hover, .jk-blue:hover {
29-
cursor: pointer;
30-
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
31-
}
32-
332
:root {
343
--jk-blue: #1672fd;
354
--jk-blue-hover: #025ce4;
@@ -49,13 +18,13 @@
4918
--jk-site-font: "Roboto", sans-serif;
5019
}
5120

52-
.jk-btn, .jk-blue {
21+
.jkbtn {
5322
padding: 15px 25px;
5423
transition: 0.4s;
5524
border-radius: 5px;
5625
}
5726

58-
.jk-btn:hover, .jk-blue:hover {
27+
.jkbtn:hover {
5928
cursor: pointer;
6029
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
6130
}

jkcss/v101-alpha2/jkcss.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

jkcss/v101-alpha2/root.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818
--jk-site-font: "Roboto", sans-serif;
1919
}
2020

21-
.jk-btn {
21+
.jkbtn {
2222
padding: 15px 25px;
2323
transition: 0.4s;
2424
border-radius: 5px;
2525
}
2626

27-
.jk-btn:hover {
27+
.jkbtn:hover {
2828
cursor: pointer;
2929
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
3030
}

jkcss/v101-alpha2/root.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

jkcss/v101-alpha2/style.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@
1919
--jk-site-font: "Roboto", sans-serif;
2020
}
2121

22-
.jk-btn {
22+
.jkbtn {
2323
padding: 15px 25px;
2424
transition: 0.4s;
2525
border-radius: 5px;
2626
}
2727

28-
.jk-btn:hover {
28+
.jkbtn:hover {
2929
cursor: pointer;
3030
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
3131
}

jkcss/v101-alpha2/style.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)