-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
88 lines (74 loc) · 1.29 KB
/
style.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
header {
text-align: center;
margin-bottom: 32px;
}
header h1 {
font-size: 32px;
margin-bottom: 8px;
}
header p {
font-size: 16px;
color: #777;
}
input[type="text"]:focus {
box-shadow: 0 0 8px #2196f3;
caret-color: transparent;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
:root {
--color-background: #f5f5f5;
--color-text: #333;
--color-primary: #007bff;
--color-secondary: #6c757d;
}
.light-mode {
--color-background: #f5f5f5;
--color-text: #333;
--color-primary: #007bff;
--color-secondary: #6c757d;
}
.dark-mode {
--color-background: #1a1a1a;
--color-text: #f5f5f5;
--color-primary: #007bff;
--color-secondary: #6c757d;
}
body {
background-color: var(--color-background);
color: var(--color-text);
}
button {
background-color: var(--color-primary);
color: #fff;
padding: 8px 16px;
border-radius: 4px;
border: none;
cursor: pointer;
}
button:hover {
background-color: var(--color-secondary);
}
input[type="text"] {
padding: 8px;
border-radius: 4px;
border: 1px solid #ccc;
outline: none;
font-size: 16px;
}
#cpfValidation {
font-size: 16px;
font-weight: bold;
margin-top: 8px;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 0 16px;
}
.fade {
opacity: 0.5;
}