-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
137 lines (130 loc) · 2.45 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
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
137
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.fade-in {
animation: fadeIn 0.5s ease-in-out;
}
.content-width {
max-width: 800px;
width: 100%;
}
.custom-shadow {
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
@media (max-width: 640px) {
.content-width {
width: 95%;
}
footer {
flex-direction: column;
align-items: center;
}
footer > * {
margin: 5px 0;
}
.footer-links {
display: flex;
justify-content: center;
align-items: center;
}
}
#priorityResult {
font-size: 1.5rem;
font-weight: 700;
color: #1e40af;
}
@media print {
body * {
visibility: hidden;
}
#result, #result * {
visibility: visible;
}
#result {
position: absolute;
left: 0;
top: 0;
}
}
@keyframes blink {
0% { opacity: 1; }
50% { opacity: 0.5; }
100% { opacity: 1; }
}
.blink {
animation: blink 1s linear infinite;
}
.modal {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0,0,0,0.4);
}
.modal-content {
background-color: #fefefe;
margin: 15% auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
max-width: 600px;
}
.instructions {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease-out;
}
.instructions.show {
max-height: 1000px;
transition: max-height 0.5s ease-in;
}
.logo-container {
width: 100%;
height: auto;
overflow: hidden;
}
.logo-image {
width: 100%;
height: auto;
object-fit: cover;
display: block;
}
.star-rating {
font-size: 2rem;
color: #ccc;
cursor: pointer;
}
.star-rating .star:hover,
.star-rating .star.active {
color: #ffd700;
}
/* Hide the Input Parameters section */
.input-parameters {
display: none;
}
/* Styles for the welcome modal */
#welcomeModal {
transition: opacity 0.3s ease-in-out;
}
#welcomeModal.hidden {
opacity: 0;
pointer-events: none;
}
#welcomeModal .bg-white {
transition: transform 0.3s ease-in-out;
}
#welcomeModal.hidden .bg-white {
transform: scale(0.9);
}
#welcomeModal.visible {
opacity: 1;
pointer-events: auto;
}
#welcomeModal.visible .bg-white {
transform: scale(1);
}