mirror of
https://github.com/ghndrx/docker-test-image.git
synced 2026-02-10 06:45:05 +00:00
update site
This commit is contained in:
@@ -6,8 +6,22 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h1>Latest Commit</h1>
|
<div class="profile">
|
||||||
<div id="commit-info"></div>
|
<img src="avatar.jpg" alt="GitHub Avatar" class="avatar">
|
||||||
|
<h1>GitHub Profile</h1>
|
||||||
|
<div class="profile-details">
|
||||||
|
<p><strong>Name:</strong> Your Name</p>
|
||||||
|
<p><strong>Username:</strong> yourusername</p>
|
||||||
|
<p><strong>Location:</strong> City, Country</p>
|
||||||
|
<p><strong>Followers:</strong> 1000</p>
|
||||||
|
<p><strong>Following:</strong> 500</p>
|
||||||
|
</div>
|
||||||
|
<a href="https://github.com/yourusername" class="profile-link">Visit Profile</a>
|
||||||
|
</div>
|
||||||
|
<div class="commit">
|
||||||
|
<h2>Latest Commit</h2>
|
||||||
|
<div id="commit-info"></div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script src="script.js"></script>
|
<script src="script.js"></script>
|
||||||
|
|||||||
@@ -1,27 +1,35 @@
|
|||||||
body {
|
.profile {
|
||||||
font-family: Arial, sans-serif;
|
display: flex;
|
||||||
background-color: #f3f3f3;
|
align-items: center;
|
||||||
margin: 0;
|
margin-bottom: 40px;
|
||||||
padding: 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.container {
|
.avatar {
|
||||||
max-width: 800px;
|
width: 100px;
|
||||||
margin: 0 auto;
|
height: 100px;
|
||||||
padding: 20px;
|
border-radius: 50%;
|
||||||
background-color: #fff;
|
margin-right: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.profile-details {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.profile-link {
|
||||||
|
display: inline-block;
|
||||||
|
padding: 10px 20px;
|
||||||
|
background-color: #007bff;
|
||||||
|
color: #fff;
|
||||||
|
text-decoration: none;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
#commit-info {
|
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
padding: 10px;
|
}
|
||||||
background-color: #f9f9f9;
|
|
||||||
border-radius: 5px;
|
.commit {
|
||||||
|
margin-bottom: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.commit h2 {
|
||||||
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
Reference in New Issue
Block a user