-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
new style via https://ai.google.dev/
- Loading branch information
Showing
1 changed file
with
56 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,61 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>Don Clark</title> | ||
<style> | ||
body { | ||
background-color: red; | ||
font-family: Arial; | ||
font-weight: bold; | ||
color: black; | ||
} | ||
<head> | ||
<title>Responsive Gradient Buttons</title> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Don Clark - Demo Area</title> | ||
<style> | ||
body { | ||
font-family: sans-serif; | ||
text-align: center; | ||
background: linear-gradient(180deg, #222222 0%, #000000 100%); | ||
} | ||
|
||
.container { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
height: 100vh; | ||
margin: 0 auto; | ||
} | ||
|
||
.button { | ||
width: 200px; | ||
height: 50px; | ||
border-radius: 50px; | ||
background: linear-gradient(to right, #ff0000 0%, #ff4d4d 100%); | ||
box-shadow: 0 5px 10px rgba(0, 128, 255, 0.5); | ||
color: #262626; | ||
font-size: 16px; | ||
font-weight: regular; | ||
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); | ||
margin: 20px; | ||
text-decoration: none; | ||
cursor: pointer; | ||
transition: all 0.3s ease; | ||
} | ||
|
||
.button:hover { | ||
background: linear-gradient(to right, #ff4d4d 0%, #ff0000 100%); | ||
transform: scale(1.1); | ||
} | ||
|
||
.flexbox-container { | ||
display: flex; | ||
justify-content: center; | ||
@media (max-width: 768px) { | ||
.button { | ||
width: 150px; | ||
height: 40px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="flexbox-container"> | ||
<hr/> | ||
<a id="links"href="https://cransono.github.io/customized_wim_hof.html"target="blank">Customized Wim Hof (Dec2022)</a> | ||
<hr/> | ||
<a id="links"href="https://cransono.github.io/2023santa.html"target="blank">2023 OCE Santa</a> | ||
<hr/> | ||
<a id="links"href="https://cransono.github.io/daniel.html"target="blank">Daniel electrician</a> | ||
<hr/> | ||
<p><a id="links"href="https://cransono.github.io/sportssite/index.html"target="blank">Sportsite</a> </p> | ||
<hr/> | ||
</div> | ||
</body> | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<button class="button" href="https://cransono.github.io/daniel.html">Daniel Electrician</button> | ||
<button class="button" onclick="window.location.href='https://cransono.github.io/2023santa.html'">2023 Santa Invite</button> | ||
<button class="button" href="https://cransono.github.io/customized_wim_hof.html">Custom Wim Hof</button> | ||
<button class="button">Sports Site</button> | ||
</div> | ||
</body> | ||
</html> |