-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPostList.css
More file actions
49 lines (47 loc) · 978 Bytes
/
Copy pathPostList.css
File metadata and controls
49 lines (47 loc) · 978 Bytes
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
.glow {
border: 2px solid black;
margin-left: 30px;
margin-top: 100px;
width: 1000px;
animation: glow 1s ease-in-out infinite alternate;
font-size: 80px;
text-align: center;
text-transform: uppercase;
padding: 80px;
color: #ffffff;
letter-spacing: 5px;
background-color: black;
}
@keyframes glow {
from {
text-shadow: 0 0 10px red, 0 0 20px red;
}
to {
text-shadow: 0 0 20px red, 0 0 30px red, 0 0 40px red, 0 0 50px red,
0 0 60px red, 0 0 70px red, 0 0 80px red;
}
}
/*-------------Boxes--------------*/
.title-box {
background-color: red;
height: 35px;
width: 100px;
border-radius: 4px;
text-align: center;
padding-top: 12px;
padding-bottom: -12px;
margin-left: 250px;
cursor: pointer;
}
.user-box {
background-color: red;
height: 35px;
width: 100px;
border-radius: 4px;
text-align: center;
padding-top: 12px;
padding-bottom: -12px;
margin-left: 400px;
margin-top: -34px;
cursor: pointer;
}