mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-10 07:02:57 +03:00
96 lines
1.7 KiB
Cheetah
96 lines
1.7 KiB
Cheetah
{{ define "style" }}
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f0f0f0;
|
|
color: #333;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.container {
|
|
background-color: #fff;
|
|
color: #333;
|
|
padding: 32px;
|
|
border-radius: 10px;
|
|
max-width: 600px;
|
|
margin: 40px auto;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
}
|
|
.header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 24px;
|
|
}
|
|
.header .logo {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
.header .logo img {
|
|
width: 32px;
|
|
height: 32px;
|
|
object-fit: cover;
|
|
}
|
|
.header h1 {
|
|
font-size: 1.5rem;
|
|
font-weight: bold;
|
|
}
|
|
.warning {
|
|
background-color: #ffd966;
|
|
color: #7f6000;
|
|
padding: 4px 12px;
|
|
border-radius: 50px;
|
|
font-size: 0.875rem;
|
|
}
|
|
.content {
|
|
background-color: #fafafa;
|
|
color: #333;
|
|
padding: 24px;
|
|
border-radius: 10px;
|
|
}
|
|
.content h2 {
|
|
font-size: 1.25rem;
|
|
font-weight: bold;
|
|
margin-bottom: 16px;
|
|
}
|
|
.grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 16px;
|
|
margin-bottom: 16px;
|
|
}
|
|
.grid div {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.grid p {
|
|
margin: 0;
|
|
}
|
|
.label {
|
|
color: #888;
|
|
font-size: 0.875rem;
|
|
margin-bottom: 4px;
|
|
}
|
|
.message {
|
|
font-size: 1rem;
|
|
line-height: 1.5;
|
|
}
|
|
.button {
|
|
border-radius: 0.375rem;
|
|
font-size: 1rem;
|
|
font-weight: 500;
|
|
background-color: #000000;
|
|
color: #ffffff;
|
|
padding: 0.7rem 1.5rem;
|
|
outline: none;
|
|
border: none;
|
|
text-decoration: none;
|
|
}
|
|
.button-container {
|
|
text-align: center;
|
|
margin-top: 24px;
|
|
}
|
|
</style>
|
|
{{ end }}
|