Skip to content
This repository was archived by the owner on Nov 30, 2022. It is now read-only.

Commit bf91b61

Browse files
authored
Merge Dev to Main (#1)
1 parent 61ab30f commit bf91b61

File tree

12 files changed

+321
-1
lines changed

12 files changed

+321
-1
lines changed

.prettierrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"printWidth": 100,
3+
"tabWidth": 4
4+
}

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -671,4 +671,4 @@ into proprietary programs. If your program is a subroutine library, you
671671
may consider it more useful to permit linking proprietary applications with
672672
the library. If this is what you want to do, use the GNU Lesser General
673673
Public License instead of this License. But first, please read
674-
<https://www.gnu.org/licenses/why-not-lgpl.html>.
674+
<https://www.gnu.org/licenses/why-not-lgpl.html>.

css/custom.css

Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
/********** Common **********/
2+
h2 {
3+
font-size: 2.8rem !important;
4+
font-weight: 700;
5+
}
6+
7+
img {
8+
display: block;
9+
max-width: 100%;
10+
}
11+
12+
a,
13+
button {
14+
cursor: pointer;
15+
}
16+
17+
.jumbotron {
18+
margin-bottom: 0 !important;
19+
}
20+
21+
.cta {
22+
border-radius: 22px !important;
23+
padding: 12px 30px !important;
24+
font-weight: 700;
25+
transition: 0.3s ease-in-out !important;
26+
}
27+
28+
.cta:hover {
29+
text-decoration: none;
30+
transform: translateY(-5px);
31+
}
32+
33+
.cta-lightblue {
34+
background: #1ba1e2;
35+
color: #192440;
36+
}
37+
38+
.cta-lightblue:hover {
39+
background: #00d2ff;
40+
}
41+
42+
.cta-darkblue {
43+
background: #192440;
44+
color: #ffffff;
45+
}
46+
47+
.cta-darkblue:hover {
48+
color: #ffffff;
49+
background: #121a2e;
50+
}
51+
52+
/********** Banner **********/
53+
#banner {
54+
background-size: cover;
55+
}
56+
57+
#banner header {
58+
overflow: hidden;
59+
}
60+
61+
#banner header img {
62+
max-width: 80px;
63+
}
64+
65+
/********** Information **********/
66+
.info img {
67+
width: 100%;
68+
max-width: 480px;
69+
}
70+
71+
#info {
72+
background: linear-gradient(168deg, #ffffff 55%, #1ba1e2 0);
73+
}
74+
75+
/********** Copyright **********/
76+
#copyright {
77+
background: #192440;
78+
padding: 2rem 3rem;
79+
}
80+
81+
#copyright #social-media a {
82+
width: 40px;
83+
height: 40px;
84+
border-radius: 99%;
85+
background: #ffffff;
86+
transition: 0.4s ease;
87+
}
88+
89+
#copyright #social-media a i {
90+
color: #192440;
91+
font-size: 1.2rem;
92+
line-height: 40px;
93+
}
94+
95+
#copyright #social-media a:hover {
96+
background: #1ba1e2;
97+
}
98+
99+
/********** RWD **********/
100+
@media (max-width: 575px) {
101+
#banner h1 {
102+
font-size: 3.6rem;
103+
}
104+
}

img/banner-bk.jpg

112 KB
Loading

img/favicon.png

723 Bytes
Loading

img/full-splash.png

425 KB
Loading

img/icons/design.png

54.7 KB
Loading

img/icons/quicklook.png

17.8 KB
Loading

img/icons/tabs.png

6.56 KB
Loading

img/laptop-splash.png

359 KB
Loading

0 commit comments

Comments
 (0)