-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.css
87 lines (78 loc) · 1.35 KB
/
test.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
#holder {
margin: auto;
width: 95%;
height: 85%;
margin: 10px auto;
background: #32b065;
padding: 5px;
animation: color-animation 8s infinite linear alternate;
}
#menu {
margin: auto;
width: 95%;
margin: 5px auto;
background: #32b065;
padding: 5px;
}
/*
@keyframes color-animation {
0% {
background: #375e97;
}
25% {
background: #fb6542;
}
50% {
background: #ffbb00;
}
100% {
background: #3f681c
}
}
*/
@keyframes color-animation {
0% {
background: #011a27;
}
25% {
background: #063852;
}
50% {
background: #f0810f;
}
100% {
background: #e6df44
}
}
body {
text-align:center;
background-color:#303030;
min-width: 200px;
min-height: 200px;
}
.button {
border: none;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
border-radius: 8px;
padding: 10px 24px;
color: white;
background-color: #ef1a39;
-webkit-transition-duration: 0.4s;
transition-duration: 0.4s;
}
.button:hover {
background-color: #600f1b;
color: white;
}
.arctext {
text-shadow: 0px 1px 0px black, 0 0 2px black;
}
textarea {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 100%;
}