-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.scss
91 lines (83 loc) · 2.56 KB
/
index.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@400;500;600;700&display=swap');
// Variables
$font-family1: 'Barlow', sans-serif;
$theme-color: #fff;
.container {
background: $theme-color;
color: #000;
h1 {
font-family: $font-family1;
}
p {
font-family: 'Fraunces', serif;
a {
text-decoration: none;
&:hover {
color: #4169e1;
}
}
}
.projects-table {
div > div {
.card-title {
font-size: 1.35rem;
}
.card-subtitle {
div {
button {
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-size: 0.8rem;
}
.html-btn {
background: #E34F26;
color: #fff;
&:hover {
background: #c43c1f;
}
}
.css-btn {
background: #1572B6;
color: #fff;
&:hover {
background: #1f3bc4;
}
}
.js-btn {
background: #F7DF1E;
&:hover {
background: #E6C91A;
}
}
.bootstrap-btn {
background: #7952B3;
color: #fff;
&:hover {
background: #4A336E;
}
}
.scss-btn {
background: #CC6699;
color: #fff;
&:hover {
background: #B84D7F;
}
}
.react-btn {
background: #61DAFB;
&:hover {
background: #4fc8e9;
}
}
.stylus-btn {
background: #333333;
color: #fff;
&:hover {
background: #1f1f1f;
}
}
}
}
}
}
}