-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
41 lines (38 loc) · 849 Bytes
/
style.css
File metadata and controls
41 lines (38 loc) · 849 Bytes
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
body {
font-family: Arial, sans-serif;
background-color: #aaaaaa33;
text-align: center;
padding: 20px;
font-family: Arial, sans-serif;
background-image: url("images/background.jpg");
background-size: 100%;
background-position: center;
background-repeat: no-repeat;
}
.container {
background: rgba(0, 51, 105, 0.822);
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
width: 300px;
margin: 50px auto;
color:#ffd725
}
#scrolling-text {
position: fixed;
left: -100%;
bottom: 51%;
font-size: 18px;
color: #ffd725;
font-family: Arial, sans-serif;
white-space: nowrap;
animation: scroll-right 20s linear infinite;
}
@keyframes scroll-right {
0% {
left: -100%;
}
100% {
left: 100%;
}
}