SomethingThatDoesntSuck/Src/profilo.html

287 lines
17 KiB
HTML
Raw Normal View History

2020-07-06 17:02:50 +00:00
<!doctype html>
<html lang="it">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<title>Profilo di ...</title>
<style>
#mainbody{
2020-07-08 22:36:21 +00:00
width: 60%;
2020-07-06 17:02:50 +00:00
margin: 0 auto;
2020-07-07 15:13:21 +00:00
height: 100%;
2020-07-06 17:02:50 +00:00
border: 1px solid black;
2020-07-10 23:45:13 +00:00
/* --gradient-background: rgba(34, 35, 48, 0.93); */
background: var(--gradient-background);
}
#mainbody.DefaultTheme{
--gradient-background: linear-gradient(90deg, hsla(205, 46%, 30%, 1) 0%, hsla(260, 29%, 36%, 1) 100%);
--gradient-cards-background: linear-gradient(90deg, hsla(347, 89%, 61%, 1) 0%, hsla(242, 42%, 40%, 1) 100%);
/* background: -moz-linear-gradient(90deg, hsla(205, 46%, 30%, 1) 0%, hsla(260, 29%, 36%, 1) 100%);
background: -webkit-linear-gradient(90deg, hsla(205, 46%, 30%, 1) 0%, hsla(260, 29%, 36%, 1) 100%); */
2020-07-06 17:02:50 +00:00
}
#biografia{
padding: 20px 35px;
}
2020-07-08 17:15:59 +00:00
.card-comments{
border-left: 5px solid #1B98E0;
2020-07-10 23:45:13 +00:00
background: var(--gradient-cards-background);
/* background: hsla(347, 89%, 61%, 1);
2020-07-08 17:15:59 +00:00
background: linear-gradient(90deg, hsla(347, 89%, 61%, 1) 0%, hsla(242, 42%, 40%, 1) 100%);
background: -moz-linear-gradient(90deg, hsla(347, 89%, 61%, 1) 0%, hsla(242, 42%, 40%, 1) 100%);
background: -webkit-linear-gradient(90deg, hsla(347, 89%, 61%, 1) 0%, hsla(242, 42%, 40%, 1) 100%);
2020-07-10 23:45:13 +00:00
filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#F44369", endColorstr="#3E3B92", GradientType=1 ); */
2020-07-08 17:15:59 +00:00
}
2020-07-06 17:34:21 +00:00
* {
box-sizing: border-box;
}
body{
color: white;
background-image: url("https://steamcommunity-a.akamaihd.net/economy/image/-9a81dlWLwJ2UUGcVs_nsVtzdOEdtWwKGZZLQHTxH5rd9eDAjcFyv45SRYAFMIcKL_PArgVSL403ulRUWEndVKv6j52AAA07JABT4Lj3eF840KfKIGxEvYi0xYbTk_SlMOrTlDpV65Jz0ruW8NXxjRq-uxT3rHTGnQ");
2020-07-07 22:02:53 +00:00
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-color: black;
2020-07-06 17:34:21 +00:00
}
#img-border{
2020-07-10 23:45:13 +00:00
border: 3px solid grey;
2020-07-06 17:34:21 +00:00
}
2020-07-10 23:45:13 +00:00
.profileimg{
2020-07-07 12:15:43 +00:00
width: 260px;
height: 260px;
}
2020-07-06 17:34:21 +00:00
.card {
background: inherit!important;
}
2020-07-06 23:09:13 +00:00
@media (max-width: 768px) {
#mainbody{
width: auto;
height: 100%;
}
2020-07-07 12:15:43 +00:00
.spacename{
margin-top: 10px;
}
2020-07-06 23:09:13 +00:00
}
2020-07-07 13:02:07 +00:00
.lastimagecomments {
/* classe utilizzata per ridimensionare le immagini relative agli ultimi commenti scritti */
height: 150px!important;
width: 100px!important;
2020-07-07 15:13:21 +00:00
border: 1px solid whitesmoke;
border-radius: 5px;
2020-07-07 13:02:07 +00:00
}
.table td,.table th {
border-top: none!important;
}
.pfont{
font-size: 15px;
color: white;
}
.commentsmedia{
font-size: 12px;
}
2020-07-07 15:13:21 +00:00
.table td,.table th {
width: 50%;
}
.isoffline{
width: 100%;
height: auto;
color: white;
text-align: center;
2020-07-07 22:02:53 +00:00
background-color: #DD1155;
2020-07-07 15:13:21 +00:00
}
2020-07-08 17:15:59 +00:00
.personalprofile{
background-color: rgba( 0, 0, 0, 0.3 )!important;
}
2020-07-07 17:04:25 +00:00
.carousel{
width: 300px;
}
.carousel-item{
height: 500px;
width: 300px;
}
.carousel-item img{
height: 100%;
width: 300px;
}
.table-hover tbody tr:hover {
background: transparent;
}
.zoom{
transition: transform 0.5s;
}
.zoom:hover {
-ms-transform: scale(1.5); /* IE 9 */
-webkit-transform: scale(1.5); /* Safari 3-8 */
transform: scale(1.5);
}
@media (max-width: 1920px){
body {
background-size: auto;
}
}
2020-07-12 10:48:49 +00:00
@media (max-width: 1360px){
.profileimg {
height: auto!important;
}
}
2020-07-06 17:02:50 +00:00
</style>
</head>
<body>
2020-07-10 23:45:13 +00:00
<div id="mainbody" class="DefaultTheme">
2020-07-06 17:02:50 +00:00
<div class="container">
2020-07-06 17:34:21 +00:00
<div class="row no-gutters mt-4">
2020-07-06 23:09:13 +00:00
<div class="col-lg-4 text-center my-auto">
2020-07-10 23:45:13 +00:00
<img id="img-border" src="https://avatarfiles.alphacoders.com/162/162492.png" class="img-fluid profileimg" alt="">
2020-07-06 17:02:50 +00:00
</div>
<div class="col-lg-8">
2020-07-07 12:15:43 +00:00
<h3 class="text-center spacename">NOME PROFILO</h3>
2020-07-06 17:02:50 +00:00
<br>
<p id="biografia">Lorem ipsum dolor sit amet consectetur adipisicing elit. Eveniet dolorum unde ea laborum eum iure beatae totam assumenda, quisquam architecto nemo, quod blanditiis asperiores magnam commodi exercitationem excepturi dolorem a!</p>
</div>
2020-07-06 17:34:21 +00:00
</div> <!-- FINE ROW -->
2020-07-06 23:09:13 +00:00
<div class="row no-gutters mt-3">
<div class="col-lg-8 pl-2 pr-3">
2020-07-08 17:15:59 +00:00
<div class="card-header card-comments">
2020-07-06 17:34:21 +00:00
<h3 class="text-center">FILM PREFERITI</h3>
</div>
2020-07-08 17:28:49 +00:00
<div class="card mb-3 personalprofile">
2020-07-07 17:04:25 +00:00
<div id="carouselfavorite" class="carousel slide mx-auto" data-ride="carousel">
2020-07-07 15:13:21 +00:00
<ol class="carousel-indicators">
<li data-target="#carouselfavorite" data-slide-to="0" class="active"></li>
<li data-target="#carouselfavorite" data-slide-to="1"></li>
<li data-target="#carouselfavorite" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
2020-07-08 17:15:59 +00:00
<img src="https://image.tmdb.org/t/p/w1280/eSkjK4kctyrWpFhxl35GPvSs6tI.jpg" class="d-block w-100" alt="...">
2020-07-07 15:13:21 +00:00
<div class="carousel-caption d-none d-md-block">
</div>
</div>
<div class="carousel-item">
2020-07-08 17:15:59 +00:00
<img src="https://image.tmdb.org/t/p/w1280/e1nWfnnCVqxS2LeTO3dwGyAsG2V.jpg" class="d-block w-100" alt="...">
2020-07-07 15:13:21 +00:00
<div class="carousel-caption d-none d-md-block">
</div>
</div>
<div class="carousel-item">
2020-07-08 17:15:59 +00:00
<img src="https://image.tmdb.org/t/p/w1280/e0B6i48kxdRkMcK4tR4YNfXGWOc.jpg" class="d-block w-100" alt="...">
2020-07-07 15:13:21 +00:00
<div class="carousel-caption d-none d-md-block">
</div>
</div>
</div>
<a class="carousel-control-prev" href="#carouselfavorite" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselfavorite" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
2020-07-06 17:34:21 +00:00
</div>
2020-07-08 17:15:59 +00:00
<div class="card-header card-comments">
2020-07-06 17:34:21 +00:00
<h3 class="text-center">DA GUARDARE</h3>
</div>
2020-07-08 17:28:49 +00:00
<div class="card mb-3 personalprofile">
2020-07-07 17:04:25 +00:00
<div id="carouselExampleCaptions" class="carousel slide mx-auto" data-ride="carousel">
2020-07-07 15:13:21 +00:00
<ol class="carousel-indicators">
<li data-target="#carouselExampleCaptions" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleCaptions" data-slide-to="1"></li>
<li data-target="#carouselExampleCaptions" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
2020-07-08 17:15:59 +00:00
<img src="https://image.tmdb.org/t/p/w1280/ftavpq2PJn5pyo5opJEmj8QleKD.jpg" class="d-block w-100" alt="...">
2020-07-07 15:13:21 +00:00
<div class="carousel-caption d-none d-md-block"> </div>
</div>
<div class="carousel-item">
2020-07-08 17:15:59 +00:00
<img src="https://image.tmdb.org/t/p/w1280/imzvb941su6uhQ158GGurk7vF28.jpg" class="d-block w-100" alt="...">
2020-07-07 15:13:21 +00:00
<div class="carousel-caption d-none d-md-block">
</div>
</div>
<div class="carousel-item">
2020-07-08 17:15:59 +00:00
<img src="https://image.tmdb.org/t/p/w1280/or06FN3Dka5tukK1e9sl16pB3iy.jpg" class="d-block w-100" alt="...">
2020-07-07 15:13:21 +00:00
<div class="carousel-caption d-none d-md-block">
</div>
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleCaptions" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleCaptions" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
2020-07-06 17:34:21 +00:00
</div>
</div>
2020-07-07 15:13:21 +00:00
<div class="col-lg-4 mr-0">
<div class="isoffline mb-3">
Profilo Offline
</div>
2020-07-08 22:36:21 +00:00
<div class="card personalprofile">
<div class="card-comments">
<h3 class="text-center">ULTIMI COMMENTI</h3>
</div>
2020-07-07 15:13:21 +00:00
<table class="table table-hover">
<tbody>
<tr class="row no-gutters zoom">
2020-07-08 17:15:59 +00:00
<th class="pr-0 pl-1"><a target="_blank"><img src="https://image.tmdb.org/t/p/w1280/e1nWfnnCVqxS2LeTO3dwGyAsG2V.jpg" class="img-fluid lastimagecomments" alt=""></a></th>
<td class="mt-2"><a target="_blank"><p class="pfont text-center">STAR WARS THE CLONE WARS</p></a><p class="text-center commentsmedia pfont">Bellissimo! Lo guardavo sempre con mia sorella! :)</p></td>
2020-07-07 15:13:21 +00:00
</tr>
<tr class="row no-gutters zoom">
2020-07-08 17:15:59 +00:00
<th class="pr-0 pl-1"><a target="_blank"><img src="https://image.tmdb.org/t/p/w1280/AfdZXqqlFsPUEfi6kWWWthxw7Nz.jpg" class="img-fluid lastimagecomments" alt=""></a></th>
<td class="mt-2"><a target="_blank"><p class="pfont text-center">THE SHIELD</p></a><p class="text-center commentsmedia pfont">Bellissima serie TV! TOP</p></td>
2020-07-07 15:13:21 +00:00
</tr>
<tr class="row no-gutters zoom">
2020-07-08 17:15:59 +00:00
<th class="pr-0 pl-1"><a target="_blank"><img src="https://image.tmdb.org/t/p/w1280/oB4H3x4jO6vn3v8wjRDXpo4d9yp.jpg" class="img-fluid lastimagecomments" alt=""></a></th>
<td class="mt-2"><a target="_blank"><p class="pfont text-center">ADAM KADMOND</p></a><p class="text-center commentsmedia pfont">Film strepitoso! Consiglio a tutti di guardarlo! :)</p></td>
2020-07-07 15:13:21 +00:00
</tr>
</tbody>
</table>
</div>
<!-- <hr>
<h3 id="popularposts">NUOVE USCITE</h3>
<table class="table table-hover">
<tbody><tr class="row">
<th class="pr-0 pl-1"><a title="Beyond: Two Souls" href="/games/beyond-two-souls" target="_blank"><img src="/media/Download-Beyond-Two-Souls-Crack.jpg" class="img-fluid lastupdate" alt="Beyond: Two Souls"></a></th>
<td class="mt-2 pb-0"><a title="Beyond: Two Souls" href="/games/beyond-two-souls" target="_blank"><p class="pfont mb-0">Beyond: Two Souls</p></a><p class="text-muted mb-0"><i class="fas fa-calendar-day"></i> 18/06/2020</p> </td>
</tr>
<tr class="row">
<th class="pr-0 pl-1"><a title="Detroit: Become Human" href="/games/detroit-become-human" target="_blank"><img src="/media/Download-Detroit-Become-Human-Crack.jpg" class="img-fluid lastupdate" alt="Detroit: Become Human"></a></th>
<td class="mt-2 pb-0"><a title="Detroit: Become Human" href="/games/detroit-become-human" target="_blank"><p class="pfont mb-0">Detroit: Become Human</p></a><p class="text-muted mb-0"><i class="fas fa-calendar-day"></i> 18/06/2020</p> </td>
</tr>
<tr class="row">
<th class="pr-0 pl-1"><a title="BIGFOOT + Multiplayer" href="/games/bigfoot-multiplayer" target="_blank"><img src="/media/bigfootheader.jpg" class="img-fluid lastupdate" alt="BIGFOOT + Multiplayer"></a></th>
<td class="mt-2 pb-0"><a title="BIGFOOT + Multiplayer" href="/games/bigfoot-multiplayer" target="_blank"><p class="pfont mb-0">BIGFOOT + Multiplayer</p></a><p class="text-muted mb-0"><i class="fas fa-calendar-day"></i> 30/05/2020</p> </td>
</tr>
<tr class="row">
<th class="pr-0 pl-1"><a title="ShellShock Live + Multiplayer" href="/games/shellshock-live-multiplayer" target="_blank"><img src="/media/Download-ShellShock-Live-Multiplayer-Crack.jpg" class="img-fluid lastupdate" alt="ShellShock Live + Multiplayer"></a></th>
<td class="mt-2 pb-0"><a title="ShellShock Live + Multiplayer" href="/games/shellshock-live-multiplayer" target="_blank"><p class="pfont mb-0">ShellShock Live + Multipl…</p></a><p class="text-muted mb-0"><i class="fas fa-calendar-day"></i> 22/05/2020</p> </td>
</tr>
<tr class="row">
<th class="pr-0 pl-1"><a title="The Wonderful 101: Remastered" href="/games/the-wonderful-101-remastered" target="_blank"><img src="/media/Download-The-Wonderful-101-Remastered-Crack.jpg" class="img-fluid lastupdate" alt="The Wonderful 101: Remastered"></a></th>
<td class="mt-2 pb-0"><a title="The Wonderful 101: Remastered" href="/games/the-wonderful-101-remastered" target="_blank"><p class="pfont mb-0">The Wonderful 101: Remast…</p></a><p class="text-muted mb-0"><i class="fas fa-calendar-day"></i> 19/05/2020</p> </td>
</tr>
<tr class="row">
<th class="pr-0 pl-1"><a title="State of Decay 2: Juggernaut Edition + Multiplayer" href="/games/state-of-decay-2-juggernaut-edition-multiplayer" target="_blank"><img src="/media/Download-State-of-Decay-2-Juggernaut-Edition-Multiplayer-Crack.jpg" class="img-fluid lastupdate" alt="State of Decay 2: Juggernaut Edition + Multiplayer"></a></th>
<td class="mt-2 pb-0"><a title="State of Decay 2: Juggernaut Edition + Multiplayer" href="/games/state-of-decay-2-juggernaut-edition-multiplayer" target="_blank"><p class="pfont mb-0">State of Decay 2: Juggern…</p></a><p class="text-muted mb-0"><i class="fas fa-calendar-day"></i> 13/05/2020</p> </td>
</tr>
</tbody></table>
<hr>
</div> -->
2020-07-06 17:02:50 +00:00
</div>
2020-07-07 13:02:07 +00:00
</div>
2020-07-06 17:02:50 +00:00
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
</body>
</html>