forked from akshay-anil22/nasa-pace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmlp.css
59 lines (56 loc) · 1010 Bytes
/
mlp.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
body
{
color:white;
background-color: black;
}
h1
{
color:orange;
}
h2
{
color:orange;
text-align: center;
}
.card {
background-color: rgba(0, 0, 0, 0.169);
border: 1px solid orange;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0);
padding: 20px;
margin-bottom: 20px;
margin: 20px auto;
max-width: 400px;
transition: all 0.3s ease;
outline: none;
}
.card h3
{
margin: 0;
color: white;
font-size: 16px;
.glow-button:hover {
animation: glow-animation 1s infinite alternate;
}
}
.card:hover
{
animation: glow-animation 1s infinite alternate;
}
@keyframes glow-animation
{
0%
{
box-shadow: 0 0 5px rgb(255, 174, 0), 0 0 10px rgb(255, 174, 0);
}
100%
{
box-shadow: 0 0 20px rgb(255, 174, 0), 0 0 30px rgb(255, 174, 0),;
}
}