mirror of
https://github.com/Steffo99/steffoweb.git
synced 2024-11-21 15:44:31 +00:00
I found this on my Google Drive
This commit is contained in:
commit
26b6dc679e
3 changed files with 133 additions and 0 deletions
40
ciao.css
Normal file
40
ciao.css
Normal file
|
@ -0,0 +1,40 @@
|
|||
body
|
||||
{
|
||||
font-family: 'Ubuntu';
|
||||
background-color: #ff7f00;
|
||||
color: #783f04;
|
||||
}
|
||||
|
||||
a
|
||||
{
|
||||
color: #0000ff;
|
||||
}
|
||||
|
||||
.box
|
||||
{
|
||||
background-color: #fce5cd;
|
||||
padding: 5px;
|
||||
border-radius: 5px;
|
||||
margin: 2px;
|
||||
}
|
||||
|
||||
.gold
|
||||
{
|
||||
background-color: #ffff00;
|
||||
color: #7f6000;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.silver
|
||||
{
|
||||
background-color: #d9d9d9;
|
||||
color: #434343;
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
.bronze
|
||||
{
|
||||
background-color: #f6b26b;
|
||||
color: #783f04;
|
||||
font-size: 12px;
|
||||
}
|
93
ciao.htm
Normal file
93
ciao.htm
Normal file
|
@ -0,0 +1,93 @@
|
|||
<html>
|
||||
<head>
|
||||
<!--Titolo--> <title>I'm bored</title>
|
||||
<!--Font Ubuntu--> <link href='https://fonts.googleapis.com/css?family=Ubuntu' rel='stylesheet' type='text/css'>
|
||||
<!--CSS Bootstrap--><link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
|
||||
<!--Il mio CSS--> <link href='ciao.css' rel='stylesheet' type='text/css'>
|
||||
<!--JQuery--> <script src='https://code.jquery.com/jquery-2.2.4.js'></script>
|
||||
<!--JS Bootstrap--> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
|
||||
<!--FontAwesome--><link rel="stylesheet" href="font-awesome/css/font-awesome.min.css">
|
||||
<!--SteffoJS--> <script src="ciao.js"></script>
|
||||
<!--No zoom--> <meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
</head>
|
||||
<body class="container-fluid">
|
||||
<h1 class="text-center">
|
||||
Steffo: the website
|
||||
</h1>
|
||||
<h4 class="text-center">
|
||||
without anything inside
|
||||
</h4>
|
||||
<div id="icone">
|
||||
<h2>
|
||||
Random icons
|
||||
</h2>
|
||||
<a href="http://steamcommunity.com/id/steffo1999"><i class="fa fa-steam"></i> Steam</a><br>
|
||||
<a href="http://telegram.me/Steffo"><i class="fa fa-send"></i><!--Anche se l'icona non è quella--> Telegram</a><br>
|
||||
<a href="http://github.com/Steffo99"><i class="fa fa-github"></i> GitHub</a>
|
||||
</div>
|
||||
<div id="robe">
|
||||
<h2>
|
||||
Achievements
|
||||
</h2>
|
||||
<!--Oro-->
|
||||
<a href="http://euso2016.ee/">
|
||||
<div class="box gold">
|
||||
Silver Medal with Italy Team B at the <b>European Union Science Olympiads</b> held in May 2016 in Estonia.
|
||||
</div>
|
||||
</a>
|
||||
<!--Argento-->
|
||||
<div class="row">
|
||||
<div class="col-xs-6">
|
||||
<a href="http://telegram.me/mifiabot">
|
||||
<div class="box silver">
|
||||
<b>MifiaBot</b>, a configurable Telegram bot to play Mafia in Telegram groups.
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-xs-6">
|
||||
<a href="https://github.com/Steffo99/royal-bot">
|
||||
<div class="box silver">
|
||||
<b>RoyalBot</b>, a Telegram bot for my online community to enhance our messaging group.
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<!--Bronzo-->
|
||||
<div class="row">
|
||||
<div class="col-md-3 col-xs-6">
|
||||
<div class="box bronze">
|
||||
<b>This website</b>.
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-3 col-xs-6">
|
||||
<a href="https://github.com/Steffo99/ryg-audio-bot">
|
||||
<div class="box bronze">
|
||||
<b>rygaudiobot</b>, a Telegram inline bot which sends prerecorded audio messages related to an online community.
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-3 col-xs-6">
|
||||
<a href="https://github.com/Steffo99/iiiiil-gioco">
|
||||
<div class="box bronze">
|
||||
A terrible <b>CLI game</b> made for a school project to demonstrate GitHub usage.
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-3 col-xs-6">
|
||||
<div class="box bronze">
|
||||
Some <b>unfinished</b> GameMaker: Studio and Unity <b>games</b>.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-3 col-xs-6">
|
||||
<a href="http://www.froemling.net/apps/bombsquad">
|
||||
<div class="box bronze">
|
||||
Helped in translating <b>BombSquad</b> into Italian.
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
0
ciao.js
Normal file
0
ciao.js
Normal file
Loading…
Reference in a new issue