This commit is contained in:
Kavalar 2025-01-03 18:25:24 +03:00
parent 6462a98e6c
commit ba10bea132
2 changed files with 61 additions and 0 deletions

View File

@ -20,6 +20,7 @@
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css">
<link rel="stylesheet" href="<?= $resources ?>/css/bootstrap.min.css">
<link rel="stylesheet" href="<?= $resources ?>/css/style.css">
<link rel="stylesheet" href="<?= $resources ?>/css/tg.css">
</head>
<body>

60
resources/main/css/tg.css Normal file
View File

@ -0,0 +1,60 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
color: var(--tg-theme-text-color);
background: var(--tg-theme-bg-color);
}
.Main {
width: 100%;
padding: 25px;
text-align: center;
}
h1 {
margin-top: 40px;
margin-bottom: 10px;
}
img {
width: 70px;
margin: 30px auto;
}
.btn {
border: 0;
border-radius: 5px;
margin-top: 50px;
height: 60px;
width: 200px;
font-style: 20px;
font-weight: 500;
cursor: pointer;
color: var(--tg-theme-button-text-color);
background: var(--tg-theme-button-color);
}
form {
display: none;
text-align: center;
}
input {
outline: none;
border-radius: 5px;
border: 2px solid #535353;
padding: 15px 10px;
margin: 10px 0 0;
background: var(--tg-theme-section-separator-color);
color: var(--tg-theme-text-color);
transition: all .2s;
}
input:focus {
border-color: var(--tg-theme-secondary-bg-color)
}