-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
75 lines (65 loc) · 1.51 KB
/
style.css
File metadata and controls
75 lines (65 loc) · 1.51 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
body {
font-size: 150%;
font-family: "Arial black";
background-color:rgb(31, 31, 31);
color:white;
padding: 50px;
margin: 0px;
background-image: linear-gradient(150deg, #7effee 5%, #1135fde0 30%, #10dfb2 90%);
background-attachment: fixed;
opacity: 0.9;
text-shadow: 0 0 3px white, 0 0 10px #0066ff, 0 0 15px blue, 0 0 20px blue;
}
h1 {
margin: 0px;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
color: rgb(100, 100, 255);
opacity: 0.6; /* Firefox */
}
::-ms-input-placeholder { /* Microsoft Edge */
color: rgb(100, 100, 255);
opacity: 0.6;
}
.Done {
text-decoration: line-through;
}
button {
color: white;
background: none;
border-color: white;
padding: 10px 10px;
text-align: center;
text-decoration: none;
display: inline-block;
margin: 4px 2px;
cursor: pointer;
border-radius: 15px;
font-weight: bold;
text-shadow: 0 0 3px white, 0 0 10px #0066ff, 0 0 15px blue, 0 0 20px blue;
}
.glow1 {
-webkit-animation: glow1 1s ease-in-out infinite alternate;
-moz-animation: glow1 1s ease-in-out infinite alternate;
animation: glow1 1s ease-in-out infinite alternate;
}
@-webkit-keyframes glow1 {
from {
text-shadow: 0 0 3px white, 0 0 10px #0066ff, 0 0 15px blue, 0 0 20px blue;
}
to {
text-shadow: 0 0 8px white, 0 0 20px #0066ff, 0 0 30px blue, 0 0 40px blue;
}
}
div {
box-shadow: 0 0 15px white;
padding: 10px;
}
.todoText {
border-radius: 15px;
}
input {
background-color: rgba(255, 255, 255, 0.7);
border-color: white;
color: blue;
}