-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtimestamps.css
136 lines (118 loc) · 2.46 KB
/
timestamps.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
.timestamp-container {
display: flex;
align-items: center; /* Align items vertically */
justify-content: center; /* Center content horizontally */
margin: 0px auto;
max-width: 600px; /* Adjust the max-width as needed */
}
.copy-button {
font-family: 'Belanosima', sans-serif;
font-size: 1rem;
background-color: transparent;
color: #f2f2f2;
border: solid 2px #36393e;
outline: none;
padding: 0.5rem 1rem;
border-radius: 8px;
cursor: pointer;
transition: all 200ms ease-in;
}
.copy-button:hover {
color: #f2f2f2;
background: #36393e;
border: solid 2px #999999;
}
.tool-holder {
padding-top: 50px;
min-height: 680px;
display: flex;
margin: 0 40px;
justify-content: center;
position: relative;
align-items: center; /* Align items vertically */
}
.tool-text {
text-align: center;
font-size: 20px;
}
.tool-output {
font-size: 20px;
}
.tool-output span {
background-color: #181b1d;
border-radius: 5px;
padding: 2px;
text-decoration: underline;
text-underline-position: under;
text-decoration-color: #8C52FF;
text-decoration-style: solid;
text-decoration-thickness: 2px
}
.tool-container {
position: absolute;
top: 50%;
border-radius: 20px;
background-color: #181b1d;
padding: 30px;
border: solid 2px #36393e;
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
#snackbar {
visibility: hidden;
min-width: 250px;
transform: translateX(-50%);
background-color: #181b1d;
border: solid 2px #36393e;
color: #fff;
text-align: center;
border-radius: 10px;
padding: 16px;
position: fixed;
z-index: 1;
left: 50%;
bottom: 30px;
}
#snackbar.show {
visibility: visible;
animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
@keyframes fadein {
from {bottom: 0; opacity: 0;}
to {bottom: 30px; opacity: 1;}
}
@keyframes fadeout {
from {bottom: 30px; opacity: 1;}
to {bottom: 0; opacity: 0;}
}
table {
border-collapse: collapse;
width: 100%;
}
th,
td {
text-align: left;
padding: 8px;
}
/* Responsiveness */
@media (max-width: 1200px) {
.tool-holder {
margin: 0 0px;
}
}
@media (max-width: 744px) {
.tool-text {
font-size: 15px;
}
.tool-output {
font-size: 15px;
}
.tool-holder h2 {
font-size: 20px;
}
}
@media (max-width: 400px) {
.tool-container {
padding: 0px;
}
}