-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestStyle.css
More file actions
97 lines (70 loc) · 1.92 KB
/
Copy pathtestStyle.css
File metadata and controls
97 lines (70 loc) · 1.92 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#beginButton, #resultsExitButton, #callToActionButton {
transition: opacity 1s;
opacity: 0;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
#privacyConsent {
margin-top: 15px;
margin-right: 10px;
}
.test-container {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100vh;
background-image: url('../../images/dark_table_right_items.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.container {
background-color: rgba(255, 255, 255, 0.8);
padding: 20px;
margin-right: 20%;
border-radius: 8px;
box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
width: 50%;
max-width: 700px;
transition: opacity 0.5s;
}
.progress-bar {
width: 80%;
background-color: #f3f3f3; /* Light grey */
border-radius: 25px;
margin: 0 auto; /* Center the progress bar */
}
#progressBar {
height: 36px;
width: 0%;
background-color: #f44336; /* Red */
border-radius: 25px;
transition: width 2.5s ease-in-out;
}
.loader {
border: 16px solid #f3f3f3; /* Light grey */
border-top: 16px solid #000; /* Black */
border-radius: 50%;
width: 50px;
height: 50px;
animation: spin 2s linear infinite;
margin: 20px auto;
}
button {
background-color: #000; /* Black */
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
margin: 10px;
}
button:hover {
background-color: #333333; /* Darker black on hover */
}
button:active {
transform: scale(0.95);
}