-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
99 lines (80 loc) · 1.34 KB
/
Copy pathstyle.css
File metadata and controls
99 lines (80 loc) · 1.34 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
98
99
@font-face { font-family: goodtimes; src: url('goodtimes.otf'); }
html {
height: 100%;
width: 100%;
background-color: #d8d8d8;
}
h1 {
font-size: 80px;
}
h2 {
font-size: 60px;
}
table th{
font-size: 32px;
}
table td{
font-size: 24px;
}
.banner{
width: 100%;
margin: 0%;
padding: 0%;
border: 0%;
display: block;
}
.center {
text-align: center;
}
.font {
font-family: goodtimes;
}
.red{
text-align: center;
font-family: goodtimes;
background-color: #ff0035;
}
table, th, td{
border: 1px solid;
border-collapse: collapse;
}
th.red{
background-color: #E70025;
}
.blu{
text-align: center;
font-family: goodtimes;
background-color: #0088DC;
}
th.blu{
background-color: #0049D1;
}
logo-slider {
/* $min-image-size: 50px;
$max-image-size: 100px;
--image-size: #{$max-image-size}; */
border: 1px solid #575757;
padding: 0px;
overflow: hidden;
max-width: 100%;
width: 100%;
height: auto;
margin: 0;
position: relative;
display: flex;
}
logo-slider div {
display: flex;
position: relative;
animation: marquee 40s linear infinite;
justify-content: space-around;
/* You may need this if there are too few images for the banner width
min-width:100%; */
}
logo-slider tr {
width: 100px;
}
@keyframes marquee {
0% { transform: translateX(0%); }
100% { transform: translateX(-100%); }
}