-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
74 lines (65 loc) · 1.49 KB
/
styles.css
File metadata and controls
74 lines (65 loc) · 1.49 KB
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
/* General Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Dark Mode Styles */
body {
background-color: #1a1a1a;
color: #ffffff;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
/* Container Styles */
.container {
text-align: center;
background-color: #2d2d2d;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
/* Header Styles */
h1 {
font-size: 2rem;
margin-bottom: 1.5rem;
}
/* Arrow Container Styles */
#arrow-container {
margin: 1.5rem 0;
opacity: 1; /* Default opacity */
transition: opacity 0.2s ease; /* Smooth fade effect */
}
/* Arrow Image Styles */
#arrow-container img {
width: 200px; /* Adjust the size of the arrow */
height: auto;
}
/* Direction Label Styles */
#direction-label {
font-size: 1.5rem;
margin-top: 1rem;
opacity: 1; /* Default opacity */
transition: opacity 0.5s ease; /* Smooth fade effect */
}
/* Button Styles */
button {
background-color: #4a90e2;
color: #ffffff;
border: none;
padding: 0.75rem 1.5rem;
font-size: 1rem;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
margin-top: 1.5rem;
}
button:hover {
background-color: #357abd;
}
button:active {
scale: 95%
}