Skip to content

Commit 7c0220b

Browse files
committed
Initial commit
0 parents  commit 7c0220b

15 files changed

Lines changed: 289 additions & 0 deletions

.gitignore

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Compiled source #
2+
###################
3+
*.com
4+
*.class
5+
*.dll
6+
*.exe
7+
*.o
8+
*.i
9+
*.s
10+
*.so
11+
12+
# OS generated files #
13+
######################
14+
.DS_Store
15+
.DS_Store?
16+
._*
17+
.Spotlight-V100
18+
.Trashes
19+
ehthumbs.db
20+
Thumbs.db
21+
22+
# IDEs generated files #
23+
########################
24+
.vscode
25+
.vs
26+
.idea

assets/css/style.css

Lines changed: 112 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
@font-face {
2+
font-family: "Material Icons";
3+
font-style: normal;
4+
font-weight: 400;
5+
src: url(../fonts/MaterialIcons-Regular.ttf) format("truetype");
6+
}
7+
8+
.material-icons {
9+
font-family: "Material Icons";
10+
font-weight: normal;
11+
font-style: normal;
12+
font-size: 24px;
13+
display: inline-block;
14+
line-height: 1;
15+
text-transform: none;
16+
letter-spacing: normal;
17+
word-wrap: normal;
18+
white-space: nowrap;
19+
direction: ltr;
20+
text-rendering: optimizeLegibility;
21+
-webkit-font-smoothing: antialiased;
22+
-moz-osx-font-smoothing: grayscale;
23+
font-feature-settings: "liga";
24+
-webkit-font-feature-settings: "liga";
25+
}
26+
27+
html {
28+
scroll-behavior: smooth;
29+
}
30+
31+
body {
32+
display: flex;
33+
min-height: 100vh;
34+
flex-direction: column;
35+
/* background-image: url(../img/bg-1.jpeg); */
36+
/* background-image: linear-gradient(to top right, rgba(255, 0, 255, 0.2), rgba(255, 0, 0, 0.1)); */
37+
}
38+
39+
main {
40+
flex: 1 0 auto;
41+
margin-top: 2em !important;
42+
}
43+
44+
.text-icon {
45+
margin-left: 8px;
46+
vertical-align: middle;
47+
}
48+
49+
.nav-wrapper {
50+
padding: 0 2em;
51+
}
52+
53+
.icon-left-align {
54+
vertical-align: middle;
55+
margin-right: 0.5em;
56+
}
57+
58+
.icon-right-align {
59+
vertical-align: middle;
60+
margin-left: 0.5em;
61+
}
62+
63+
.sidenav-overlay {
64+
z-index: 50 !important;
65+
}
66+
67+
.sidenav {
68+
z-index: 100 !important;
69+
}
70+
71+
ul.tabs {
72+
display: flex;
73+
}
74+
75+
li.tab {
76+
flex-basis: 33.33%;
77+
}
78+
79+
.tabs .tab a {
80+
color: #b71c1c;
81+
}
82+
83+
.tab a.active {
84+
font-weight: bold;
85+
}
86+
87+
.tabs .tab a:focus.active {
88+
font-weight: bold;
89+
background-color: #f3e5f5;
90+
}
91+
92+
.tabs .indicator {
93+
background-color: #b71c1c;
94+
}
95+
96+
.team-img {
97+
width: 128px;
98+
height: 128px;
99+
}
100+
101+
.footer-container {
102+
margin: 0 10%;
103+
width: 85%;
104+
}
105+
106+
.footer-git-icon {
107+
width: 1.2em;
108+
height: 1.2em;
109+
margin-right: 5px;
110+
vertical-align: text-bottom;
111+
border-radius: 50%;
112+
}
225 KB
Binary file not shown.

assets/img/bg-1.jpeg

80.2 KB
Loading

assets/img/github.png

6.94 KB
Loading

assets/img/logo.png

28.1 KB
Loading

assets/img/member-1.jpg

52.3 KB
Loading

assets/img/member-2.png

85 KB
Loading

assets/img/member-3.png

6.4 KB
Loading

assets/img/member-4.png

382 Bytes
Loading

0 commit comments

Comments
 (0)