home.scss
1.96 KB
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
92
93
.home {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
.home-title {
margin: 40px 0px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
h2 {
font-size: 30px;
font-weight: 600;
text-transform: uppercase;
margin-bottom: 30px;
}
h1 {
font-size: 50px;
font-weight: 800;
text-transform: uppercase;
}
}
.home-quote {
width: 100%;
display: flex;
text-align: center;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 20px;
box-shadow: 0 13px 27px -5px rgba(50, 50, 93, 0.25),
0 8px 16px -8px rgba(0, 0, 0, 0.3), 0 -6px 16px -6px rgba(0, 0, 0, 0.025);
h2 {
font-size: 30px;
font-family: "Pattaya", sans-serif;
margin: 10px 0px;
}
h3 {
font-size: 25px;
opacity: 0.5;
font-family: "Pattaya", sans-serif;
}
}
.home-link {
margin-top: 50px;
font-size: 30px;
font-weight: 700;
display: flex;
justify-content: center;
align-items: center;
a {
color: $blue;
&:not(:last-child) {
margin-right: 50px;
}
}
}
.gotoTrend {
margin-top: 50px;
display: flex;
text-align: center;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 20px;
box-shadow: 0 13px 27px -5px rgba(50, 50, 93, 0.25),
0 8px 16px -8px rgba(0, 0, 0, 0.3), 0 -6px 16px -6px rgba(0, 0, 0, 0.025);
h2 {
color: #fb8500;
font-size: 25px;
font-weight: 700;
margin-bottom: 20px;
}
.gotoTrend-repos {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
a {
font-size: 18px;
margin: 10px 0px;
}
.repoName {
font-weight: 600;
}
.repoStar {
font-weight: 600;
color: $star;
}
}
}
}