@@ -68,3 +68,91 @@ body {
68
68
opacity : 0.8 ;
69
69
}
70
70
}
71
+
72
+ .cookie img {
73
+ width : 15rem ;
74
+ transition : transform 0.02s ease-in-out;
75
+ will-change : transform;
76
+ position : relative;
77
+ }
78
+
79
+ .cookie img : active {
80
+ transform : scale (0.8 );
81
+ }
82
+
83
+ .click-effect {
84
+ position : absolute;
85
+ color : white;
86
+ font-size : 2rem ;
87
+ font-weight : bold;
88
+ text-shadow : 0 0 8px rgba (255 , 255 , 255 , 0.8 );
89
+ pointer-events : none;
90
+ }
91
+
92
+ /* Font Awesome for icons */
93
+ @import url ("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" );
94
+
95
+ /* Estilos para a tabela */
96
+ .stats-container {
97
+ display : flex;
98
+ justify-content : center;
99
+ margin-top : 20px ;
100
+ padding : 0 10px ;
101
+ }
102
+
103
+ .stats-table {
104
+ width : 100% ;
105
+ max-width : 400px ;
106
+ border-collapse : collapse;
107
+ text-align : left;
108
+ font-family : "Press Start 2P" , cursive;
109
+ color : var (--text-color );
110
+ background-color : var (--table-row-bg );
111
+ border : 2px solid var (--table-border );
112
+ box-shadow : 0 4px 8px rgba (0 , 0 , 0 , 0.1 );
113
+ }
114
+
115
+ .stats-table th , .stats-table td {
116
+ border : 2px solid var (--table-border );
117
+ padding : 10px ;
118
+ text-align : center;
119
+ }
120
+
121
+ .stats-table th {
122
+ background-color : var (--table-header-bg );
123
+ font-size : 1em ;
124
+ }
125
+
126
+ .stats-table td {
127
+ background-color : var (--table-row-bg );
128
+ position : relative;
129
+ font-size : 1.2em ;
130
+ }
131
+
132
+ .stats-table td .label {
133
+ font-weight : bold;
134
+ }
135
+
136
+ .stats-table td .value {
137
+ display : block;
138
+ margin-top : 5px ;
139
+ }
140
+
141
+ .stats-table td .animated-number {
142
+ position : absolute;
143
+ top : 50% ;
144
+ left : 50% ;
145
+ transform : translate (-50% , -50% );
146
+ animation : rise 1s ease-out;
147
+ }
148
+
149
+ @keyframes rise {
150
+ 0% {
151
+ opacity : 0 ;
152
+ transform : translate (-50% , 50% );
153
+ }
154
+ 100% {
155
+ opacity : 1 ;
156
+ transform : translate (-50% , -50% );
157
+ }
158
+ }
0 commit comments