Site upgrade

This commit is contained in:
Andrea Foletto 2021-12-16 09:06:48 +01:00
parent dd1fcb0486
commit 3bcb62a362
15 changed files with 118 additions and 2 deletions

5
.idea/.gitignore generated vendored Normal file
View File

@ -0,0 +1,5 @@
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/

5
.idea/codeStyles/codeStyleConfig.xml generated Normal file
View File

@ -0,0 +1,5 @@
<component name="ProjectCodeStyleConfiguration">
<state>
<option name="PREFERRED_PROJECT_CODE_STYLE" value="Default" />
</state>
</component>

View File

@ -0,0 +1,16 @@
<component name="InspectionProjectProfileManager">
<profile version="1.0">
<option name="myName" value="Project Default" />
<inspection_tool class="CssUnknownProperty" enabled="true" level="WARNING" enabled_by_default="true">
<option name="myCustomPropertiesEnabled" value="true" />
<option name="myIgnoreVendorSpecificProperties" value="false" />
<option name="myCustomPropertiesList">
<value>
<list size="1">
<item index="0" class="java.lang.String" itemvalue="clip-path" />
</list>
</value>
</option>
</inspection_tool>
</profile>
</component>

8
.idea/modules.xml generated Normal file
View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/nullWebsite.iml" filepath="$PROJECT_DIR$/.idea/nullWebsite.iml" />
</modules>
</component>
</project>

12
.idea/nullWebsite.iml generated Normal file
View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/temp" />
<excludeFolder url="file://$MODULE_DIR$/.tmp" />
<excludeFolder url="file://$MODULE_DIR$/tmp" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

6
.idea/vcs.xml generated Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

BIN
public_html/images/key.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -5,9 +5,24 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="author" content="andrewfoll@protonmail.com"/>
<link rel="shortcut icon" href="./images/favicon.png"/>
<link rel="stylesheet" type="text/css" href="styles/style.css" media="screen"/>
</head>
<body>
<h2>Hello, World!</h2>
<p>You can download my pgp public key by clicking <a href="./nullablepgpkey.pub">here</a>.</p>
<div id="container">
<div id="hello-world">
<span>$ </span><span id="command">echo "Hello world!"</span><span id="pipe">|</span>
</div>
<div>
<nav id="links-nav" id="social-icons">
<a href="https://t.me/null_able"><img class="social-icon" alt="Telegram" src="./images/telegram.png"/></a>
<a href="https://gitlab.com/nullndr"><img class="social-icon" alt="gitlab" src="./images/gitlab.png"/></a>
<a href="https://github.com/nullndr"><img class="social-icon" alt="github" src="./images/github.png"/></a>
<a href="https://twitter.com/nullndr"><img class="social-icon" alt="Twitter" src="./images/twitter.png"/></a>
<a href="mailto: andrea@yaaaw.it"><img class="social-icon" alt="Protonmail" src="./images/email.png"/></a>
<a href="https://www.linkedin.com/in/andrea-foletto-5457b5187/"><img class="social-icon" alt="Linkedin" src="./images/linkedin.png"/></a>
<a href="./nullablepgpkey.pub"><img class="social-icon" alt="gpg key" src="./images/key.png"/></a>
</nav>
</div>
</div>
</body>
</html>

View File

@ -0,0 +1,49 @@
* {}
body {
background-color: #1b263b;
display: flex;
width: 100vw;
height: 100vh;
align-items: center;
justify-content: center;
margin: 0;
}
#container {
display: block;
}
#hello-world {
color: #e0e1dd;
font-size: 7vh;
font-family: 'Fira Mono', monospace;
letter-spacing: -7px;
-moz-text-size-adjust: auto;
}
#pipe {
animation: animate 1.5s linear infinite;
}
@keyframes animate{
from, 49.9% { opacity: 0; }
to, 50% { opacity: 1; }
}
#links-nav {
display: flex;
justify-content: center;
flex-wrap: wrap;
}
#links-nav > a {
padding: 5px;
}
.social-icon {
max-height: 32px;
max-width: 32px;
}