Skip to content

Commit 011ff5c

Browse files
committed
Initial commit
0 parents  commit 011ff5c

File tree

10 files changed

+873
-0
lines changed

10 files changed

+873
-0
lines changed

assets/img/IntelliCurtain.png

128 KB
Loading

assets/img/athletics.png

152 KB
Loading

assets/img/foto-CV.jpg

273 KB
Loading

assets/img/learnn.png

203 KB
Loading

assets/img/reportINGV.png

158 KB
Loading

assets/img/sensorKit.png

134 KB
Loading

assets/img/spiderman-home.png

864 KB
Loading

index.html

Lines changed: 774 additions & 0 deletions
Large diffs are not rendered by default.

script.js

Whitespace-only changes.

style.css

Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
*,
2+
*::before,
3+
*::after {
4+
margin: 0;
5+
padding: 0;
6+
box-sizing: border-box;
7+
8+
cursor: default;
9+
}
10+
11+
html {
12+
scroll-behavior: smooth;
13+
}
14+
15+
body {
16+
font-size: 100%;
17+
color: black;
18+
}
19+
20+
body * {
21+
width: 100vw;
22+
}
23+
24+
body *:nth-child(odd) {
25+
border: 2px solid black;
26+
}
27+
body *:nth-child(even) {
28+
border: 2px solid red;
29+
}
30+
31+
body {
32+
scrollbar-width: thin; /* Per Firefox */
33+
scrollbar-color: transparent transparent; /* Per Firefox */
34+
/* overflow-y: scroll; */
35+
}
36+
37+
::-webkit-scrollbar {
38+
width: 0px; /*Imposta la larghezza desiderata per la barra di scorrimento*/
39+
height: 0px; /*Imposta l'altezza desiderata per la barra di scorrimento*/
40+
}
41+
::-webkit-scrollbar-thumb {
42+
background-color: transparent; /* Rendi il pollice della barra di scorrimento trasparente */
43+
}
44+
45+
h1 {
46+
font-size: 48px;
47+
}
48+
h2 {
49+
font-size: 36px;
50+
}
51+
h3 {
52+
font-size: 24px;
53+
}
54+
55+
p {
56+
font-size: 16px;
57+
}
58+
59+
.main > * {
60+
height: 100vh;
61+
}
62+
63+
.languages{
64+
display:flex;
65+
flex-direction: column;
66+
67+
align-items: center;
68+
}
69+
70+
ul {
71+
display:flex;
72+
flex-flow: row wrap;
73+
74+
justify-content: center;
75+
align-items: center;
76+
77+
list-style-type: none;
78+
}
79+
80+
li {
81+
margin: 40px;
82+
83+
width: 150px;
84+
height: 150px;
85+
}
86+
87+
header {
88+
}
89+
90+
.myInfo {
91+
position: absolute;
92+
/* top:0; */
93+
/* left:0; */
94+
}
95+
96+
video {
97+
width: 100%;
98+
height: 100%;
99+
}

0 commit comments

Comments
 (0)