-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
executable file
·99 lines (88 loc) · 2.31 KB
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/* Body Styles */
body {
/* Background */
background-image: url("img/background.png");
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
background-size: cover;
background-color: #1e1e2d;
/* Font and Color */
font-family: 'JetBrains Mono', monospace;
color: #ffffff;
/* Layout */
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
overflow: hidden;
}
/* Container Styles */
.container {
background-color: #9e0808;
padding: 15px; /* Reduzi o padding para 15px */
border-radius: 8px; /* Bordas um pouco mais suaves */
box-shadow: 0 0 25px rgba(158, 8, 8, 0.8); /* Sombra mais suave */
width: 400px; /* Reduzido para 300px */
max-width: 80%; /* Flexível para dispositivos menores */
text-align: center;
transition: transform 0.3s ease-in-out;
box-sizing: border-box;
}
/* Header Styles */
h1, h2 {
margin-bottom: 15px; /* Reduzi a margem inferior */
font-size: 1.5em; /* Tamanho ajustado do texto */
}
/* Label Styles */
label {
display: block;
margin-bottom: 8px; /* Reduzi a margem inferior */
text-align: left;
font-weight: bold;
color: #e0e0e0; /* Um cinza claro para o texto */
}
/* Input Styles */
input {
width: 100%;
padding: 8px; /* Reduzi o padding */
margin-bottom: 12px; /* Reduzi a margem inferior */
border-radius: 5px;
border: none;
outline: none;
background-color: #3a3a4f;
color: #ffffff;
box-sizing: border-box;
}
/* Button Styles */
button {
font-family: 'JetBrains Mono', monospace;
background-color: #41434d;
color: #ffffff;
padding: 10px; /* Ajustei o padding */
border: none;
border-radius: 5px;
cursor: pointer;
width: 100%;
transition: background-color 0.3s ease, transform 0.3s ease;
}
button:hover {
background-color: #00bb10;
transform: translateY(-2px);
}
/* Datetime Styles */
#datetime {
margin-top: 15px; /* Reduzi a margem superior */
font-size: 12px;
color: #fffefd;
}
/* Media query para ajustar layout em telas menores */
@media (max-width: 768px) {
.container {
padding: 10px; /* Reduzindo padding para telas menores */
}
h1, h2 {
font-size: 1.3em; /* Ajustando o tamanho do texto */
}
}