-
Notifications
You must be signed in to change notification settings - Fork 1
/
newstyle.css
95 lines (80 loc) · 1.51 KB
/
newstyle.css
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
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
text-align: left;
background-color: #ffc107;
}
.alertPulse{
animation: pulse 2s ease-out;
animation-iteration-count: infinite;
opacity: 1;
background: #dc3545;
box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
transform: scale(1);
}
@keyframes pulse {
0% {
transform: scale(0.95);
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
}
70% {
transform: scale(1);
box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
}
100% {
transform: scale(0.95);
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}
}
/*begin spinning apple graphic*/
.div rotated
{
text-align:left;
background: transparent;
}
.rotate {
animation: rotation 3s;
}
@keyframes rotation {
from {
transform: rotateY(0deg);
}
to {
transform: rotateY(-360deg);
}
}
.linear {
animation-timing-function: linear;
}
.infinite {
animation-iteration-count: infinite;
}
/*end spinning apple graphic */
.jumbotron {
padding: 2rem 1rem;
margin-bottom: 2rem;
background-color: #fd7e14;
border-radius: 0.3rem;
}
.social{
text-align: center;
}
.fa {
padding: 7px;
font-size: 32px;
width: 31px;
text-align: center;
text-decoration: none;
margin: 5px 2px;
border-radius: 50%;
background: #0084d2;
color: white;
}
.fa:hover {
opacity: 0.7;
color: #ddd;
}