chore: some more scaling

This commit is contained in:
Muhammad Nauman Raza 2023-12-25 20:24:54 +00:00
parent c9c832929a
commit db57a5df24
No known key found for this signature in database
GPG key ID: 31BC90D626D2DBBE
2 changed files with 13 additions and 5 deletions

View file

@ -8,7 +8,7 @@
</head> </head>
<body> <body>
<div> <div class="center">
<img class="logo" src="./assets/circles-white.png" alt="Logo"> <img class="logo" src="./assets/circles-white.png" alt="Logo">
<h1 class="devraza">Devraza</h1> <h1 class="devraza">Devraza</h1>

View file

@ -2,7 +2,7 @@ body {
background-color: #151517; background-color: #151517;
color: #ece5ea; color: #ece5ea;
font-family: monospace; font-family: monospace;
font-size: 12pt; font-size: 11pt;
} }
h3 { h3 {
@ -15,14 +15,22 @@ h3 {
display: block; display: block;
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;
margin-top: 6%; width: 15rem;
width: 17rem; }
.center {
margin: 0;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
} }
.devraza { .devraza {
margin-top: 16px; margin-top: 16px;
margin-bottom: 0; margin-bottom: 0;
font-size: 70pt; font-size: 60pt;
text-align: center; text-align: center;
font-weight: 900; font-weight: 900;
} }