-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
94 lines (77 loc) · 1.3 KB
/
index.css
File metadata and controls
94 lines (77 loc) · 1.3 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
body {
font-family: Arial, sans-serif;
/* background: linear-gradient(to right, #1266AC, #DAD9D9, #231F20); */
background: linear-gradient(to right, #1266AC, #DAD9D9, #231F20);
margin: 0;
padding: 0;
}
html {
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 50px auto;
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#question {
padding-top: 25px;
text-align: center;
}
button {
display: inline-block;
padding: 10px;
margin: 5px auto;
font-size: 16px;
cursor: pointer;
}
#result-container {
margin-top: 20px;
}
#result {
font-weight: bold;
}
.hidden {
display: none;
}
h1 {
margin: auto;
text-align: center;
padding-bottom: 20px;
}
h3 {
margin: auto;
text-align: center;
}
#question-container,
#result-container {
align-items: center;
text-align: center;
}
#result-image {
margin: auto;
display: block;
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
}
#logos-container {
display: flex;
justify-content: center;
padding-top: 20px;
}
#logo {
width: 550px;
}