Skip to content

Commit 4c5188f

Browse files
committed
create 7 files and update 2 files
1 parent 2a86037 commit 4c5188f

File tree

9 files changed

+375
-9
lines changed

9 files changed

+375
-9
lines changed

ToDo.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- [ ] incomplete task
2+
- [x] completed task

app/assets/discord.png

67.5 KB
Loading

app/assets/img-home.png

18.9 KB
Loading

app/assets/logo-favicon-color.svg

Lines changed: 1 addition & 0 deletions
Loading

app/assets/logo.svg

Lines changed: 1 addition & 0 deletions
Loading

app/assets/shapes.png

49.9 KB
Loading

app/assets/triangle.png

65.6 KB
Loading

app/public/stylesheets/style.css

Lines changed: 76 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,79 @@
1-
body {
2-
padding: 50px;
3-
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
1+
:root{
2+
3+
--font-primary : "Space Grotesk", sans-serif;
4+
--font-heading : 3.5rem;
5+
--font-title : 2.5rem;
6+
--font-text : 1rem;
7+
--primary : #876CEF;
8+
--primary-variant : #4329A6;
9+
--white : #F9F8FC;
10+
--border : rgb(47,47,47);
11+
12+
--navy : #0A192F;
13+
--white-alpha: hsla(0, 0%, 100%, 0.2);
14+
15+
}
16+
17+
18+
body{
19+
font-family: var(--font-primary);
20+
font-optical-sizing: auto;
21+
font-weight: 600;
22+
font-style: normal;
23+
}
24+
header {
25+
position: fixed;
26+
top: 0;
27+
left: 0;
28+
width: 100%;
29+
z-index: 100;
30+
opacity: 1;
31+
background-color: rgba(255, 255, 255, 0.8); /* Adjust the opacity to your preference */
32+
border-bottom: 1px solid var(--border);
33+
backdrop-filter: blur(4px); /* Adjust the blur radius as needed */
34+
}
35+
36+
/* Additional styles for button hover state */
37+
header button:hover {
38+
background-color: rgba(255, 255, 255, 0.9); /* Adjust the opacity to your preference */
39+
}
40+
41+
42+
#shapes{
43+
background-image: url('/app/assets/shapes.png');
44+
background-size: cover;
45+
}
46+
47+
48+
.font-heading{
49+
font-size: var(--font-heading);
50+
}
51+
52+
.font-title{
53+
font-size: var(--font-title);
54+
}
55+
56+
.font-text{
57+
font-size: var(--font-text);
58+
}
59+
60+
.color-primary{
61+
color: var(--primary);
462
}
563

6-
a {
7-
color: #00B7FF;
64+
.navy{
65+
color: var(--navy);
66+
}
67+
68+
.bg-primary{
69+
background-color : var(--primary);
70+
}
71+
72+
.bg-primary:hover{
73+
background-color : var(--primary-variant);
74+
}
75+
76+
77+
#footer{
78+
border-top: 1px solid var(--border);
879
}

0 commit comments

Comments
 (0)