mirror of
https://github.com/GithubOrgProjectPiza/frontend.git
synced 2026-09-04 16:46:06 +02:00
add buttons schriftart funktioniert noch nicht
This commit is contained in:
+53
@@ -0,0 +1,53 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Buttons</title>
|
||||||
|
|
||||||
|
|
||||||
|
<style>
|
||||||
|
|
||||||
|
|
||||||
|
.Mainbutton {
|
||||||
|
background-color: #0E7768;
|
||||||
|
color: white;
|
||||||
|
border: none;
|
||||||
|
border-radius: 25px;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 5px;
|
||||||
|
width: 40;
|
||||||
|
height: 10;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Mainbutton:hover {
|
||||||
|
background-color: #0A473E;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Secondbutton{
|
||||||
|
|
||||||
|
background-color: #6FB98F;
|
||||||
|
color: white;
|
||||||
|
border: none;
|
||||||
|
border-radius: 25px;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 5px;
|
||||||
|
width: 40;
|
||||||
|
height: 10;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.Secondbutton:hover {
|
||||||
|
background-color: #397854;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<button class="Mainbutton">Button</button>
|
||||||
|
<br>
|
||||||
|
<button class="Secondbutton">Q</button>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Reference in New Issue
Block a user