tg css
This commit is contained in:
parent
6462a98e6c
commit
ba10bea132
@ -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="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/bootstrap.min.css">
|
||||||
<link rel="stylesheet" href="<?= $resources ?>/css/style.css">
|
<link rel="stylesheet" href="<?= $resources ?>/css/style.css">
|
||||||
|
<link rel="stylesheet" href="<?= $resources ?>/css/tg.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
|
60
resources/main/css/tg.css
Normal file
60
resources/main/css/tg.css
Normal 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)
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user