-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
94 lines (78 loc) · 1.46 KB
/
styles.css
File metadata and controls
94 lines (78 loc) · 1.46 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
*{
box-sizing: border-box;
}
body{
background-color: #237A81;
}
.digital{
width: 300px;
height: auto;
background-color: black;
padding: 5px 0 ;
border: 15px solid white;
border-radius: 20px;
}
.number{
color:#13F565;
padding: 0;
margin-left: 0;
}
.figure{
font-size: 50pt;
font-family: digital-7, 'Orbitron', sans-serif;
line-height: 0.5;
}
.leg{
width: 20px;
height: 10px;
background-color: #242424;
display: inline-block;
margin-left: -100px;
margin-right: -100px;
}
.leg-container{
margin-top: -5px;
}
.shadow{
width: 250px;
height: 210px;
background-color: #184f539d;
-ms-transform: skewX(9deg); /* IE 9 */
transform: skewX(9deg); /* Standard syntax */
margin-top: 20px;
margin-right: 0px;
position: absolute;
z-index:-1;
margin-bottom: 50px;
}
.today{
margin-top: 90px;
}
.card-panel{
border-radius: 10px;
}
marquee{
animation-name: example;
animation-duration: 10s;
animation-delay: 5s;
animation-iteration-count: infinite;
}
@keyframes example {
0% {background-color: black;}
50% {background-color: #237A81}
100% {background-color: #13F565;}
}
.both-containers{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
margin-top: 100px;
}
/* @media only screen and (max-width: 425px){
.both-containers{
position: absolute;
top: 35%;
left: 15%;
}
} */