-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
57 lines (49 loc) · 1.15 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
@font-face {
font-family: 'FancyCatPX';
src: url('Font.ttf') format('truetype');
font-family: 'Segoe UI Variable';
src: url('Segoe-UI-Variable.ttf') format('truetype');
/* Add more formats if necessary */
font-weight: normal;
font-style: normal;
}
segoe-font {
font-family: 'Segoe UI Variable', sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: 'FancyCatPX', sans-serif; /* Use your font with a fallback */
color: #ff55ff;
background-color: #250025
}
.modal {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: #222;
color: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
width: 90%; /* Adjust width for mobile */
max-width: 400px; /* Keep it reasonable on larger screens */
}
.stopwatch {
text-align: center;
}
#display {
font-family: 'FancyCat', sans-serif;
font-size: 2em;
}
/* Responsive Styles */
@media (max-width: 1000px) {
#display {
font-size: 1.5em;
}
}