-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.css
More file actions
109 lines (98 loc) · 2.37 KB
/
css.css
File metadata and controls
109 lines (98 loc) · 2.37 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
100
101
102
103
104
105
106
107
108
109
@import url('https://fonts.googleapis.com/css?family=Coiny');
.mycss-bg
{
background-image: url("/playlists/tvchannels/logoicon/");
background-repeat:no-repeat;
background-position: center;
background-attachment: fixed;
background-color: white;
color:black;
font-size:16px;
font-family: "Times New Roman", Times, serif;
letter-spacing: 0px;
line-height: 1.2;
margin:0;
}
.mycss-floating-box
{
display: inline-block;
margin:4px;
}
.mycss-big-container
{
margin: auto;
padding:5px 16px 5px 16px;
}
.mycss-container
{
margin: auto;
padding:5px 0px 5px 0px;
}
.mycss-margin-top
{
margin-top:60px;
}
.mycss-scroll-zero::-webkit-scrollbar
{ width: 0 !important }
.mycss-horizontal-container::-webkit-scrollbar
{ width: 0 !important }
.mycss-horizontal-container
{
float: left ;
max-width: 100%;
overflow: scroll;
white-space:nowrap;
}
.mycss-slide
{
height:auto;
display: inline-block;
overflow:hidden;
text-overflow:ellipsis;
}
.mycss-green, .mycss-hover-green:hover
{
color:white;
background-color:rgb(82,116,89);
}
.mycss-text-green_1, .mycss-hover-text-green_1:hover
{
color:rgb(82,116,89);
}
.mycss-green_1, .mycss-hover-green_1:hover
{
color:white;
background-color:rgb(72,116,56);
}
.mycss-text-green, .mycss-hover-text-green:hover
{
color:rgb(72,116,56);
}
.mycss-cloud-text {
font-family: 'Coiny', cursive;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-image: url(https://msegceporticoprodassets.blob.core.windows.net/asset-blobs/16247_en_1);
background-size: auto;
background-attachment: unset;
background-position: 0%;
width: 100%;
margin: auto;
font-size: 16px;
animation: clouds-moving infinite 220s;
animation-fill-mode: forwards;
animation-play-state: running;
animation-timing-function: linear;
text-align: ledt;
}
@keyframes clouds-moving {
0% {
background-position: 0%;
}
50% {
background-position: 100%;
}
100% {
background-position: 0%;
}
}