Skip to content

Commit a044c8d

Browse files
committed
added_more_cool_stuff
1 parent c7aba72 commit a044c8d

24 files changed

+820
-949
lines changed

sass/buttons.scss

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,83 +1,67 @@
11
@import "colors";
2-
@import "fonts";
32

43
.btn {
5-
64
padding: 1rem 3rem;
75
color: #fff;
86
cursor: pointer;
97
}
108

119
.btn-primary {
12-
1310
border-radius: 5px;
1411
}
1512

1613
.btn-rounded {
17-
1814
border-radius: 30px;
1915
}
2016

2117
.btn-outlined {
22-
2318
border-width: 3px;
2419
border-style: solid;
2520
transition: all 0.5s;
2621
padding: 0.8rem 3rem;
2722
&:hover {
28-
2923
color: #fff;
3024
transition: all 0.5s;
3125
}
3226
}
3327

3428
.gradient-black {
35-
3629
background: $black !important;
3730
}
3831

3932
.black-btn {
40-
4133
border-color: $black;
4234
color: $black;
4335
&:hover {
44-
4536
background-color: $black;
4637
}
4738
}
4839

4940
.green-btn {
50-
5141
border-color: $green;
5242
color: $green;
5343
&:hover {
54-
5544
background-color: $green;
5645
}
5746
}
5847

5948
.orange-btn {
60-
6149
border-color: $orange-btn;
6250
color: $orange-btn;
6351
&:hover {
64-
6552
background-color: $orange-btn;
6653
}
6754
}
6855

6956
.purple-btn {
70-
7157
border-color: $purple-btn;
7258
color: $purple-btn;
7359
&:hover {
74-
7560
background-color: $purple-btn;
7661
}
7762
}
7863

7964
button:disabled {
80-
8165
box-shadow: unset;
8266
opacity: .8;
8367
background: $disabled;
@@ -86,7 +70,6 @@ button:disabled {
8670
}
8771

8872
button:disabled:hover {
89-
9073
box-shadow: unset;
9174
background: $disabled;
9275
}

sass/cards.scss

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,16 @@
1-
@import "fonts";
2-
31
.card {
4-
52
border-radius: 5px;
63
box-shadow: 0px 1px 10px 0px rgba(5, 5, 5, 0.13);
74
.card-header {
8-
95
padding: 1.5rem 0 1.5rem 1.5rem;
106
h4 {
11-
12-
font-family: 'roboto';
137
font-weight: bold;
148
margin: 0;
159
}
1610
}
1711
.card-img {
18-
1912
overflow: hidden;
2013
img {
21-
2214
position: relative;
2315
left: 0;
2416
right: 0;
@@ -29,19 +21,15 @@
2921
}
3022
}
3123
.card-footer {
32-
3324
padding: 1.5rem 0 1.5rem 1.5rem;
3425
h4 {
35-
36-
font-family: 'roboto';
3726
font-weight: bold;
3827
margin: 0;
3928
}
4029
}
4130
}
4231

4332
.card-nofooter {
44-
4533
.card-img {
4634
img {
4735
border-bottom-left-radius: 5px;
@@ -51,7 +39,6 @@
5139
}
5240

5341
.card-noheader {
54-
5542
.card-img {
5643
img {
5744
border-top-left-radius: 5px;
@@ -61,20 +48,9 @@
6148
}
6249

6350
.card-hoverable {
64-
6551
transition: all .3s;
6652
&:hover {
67-
6853
box-shadow: 0px 11px 16px 0px rgba(5, 5, 5, 0.23);
6954
transition: all .3s;
7055
}
7156
}
72-
73-
.responsive-image {
74-
75-
overflow: hidden;
76-
img {
77-
78-
width: 100%;
79-
}
80-
}

sass/colors.scss

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,13 @@ $blue: #12c3d2;
77

88
//=========================================================
99

10-
1110
//gradient 2 colors
1211
$yellow: #FFE53B;
1312
$orange: #FF2525;
1413

1514
$orange-btn: #ff9f33;
1615
//=========================================================
1716

18-
1917
//gradient 3 colors
2018
$dark-blue: #21D4FD;
2119
$purple: #B721FF;

sass/default.scss

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
11
a {
2-
32
text-decoration: none;
43
}
54

65
button, input, select, textarea:focus {
7-
86
outline: none;
97
}
108

119
button {
12-
1310
background-color: unset;
1411
border: none;
1512
-webkit-appearance:none;

sass/fonts.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
@import "https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css";
1+
@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
22
@import url('https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i');

0 commit comments

Comments
 (0)