-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtext.css
More file actions
117 lines (99 loc) · 2.17 KB
/
text.css
File metadata and controls
117 lines (99 loc) · 2.17 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/* Copyright: Princess/CandyRandomizer */
body {
height: 100vh; /*to prevent repeating background*/
font-family: 'Exo', sans-serif;
color: rgba(0,0,0,.5);
text-align: center;
letter-spacing: .5em;
text-transform: uppercase;
background: linear-gradient(135deg, rgb(113, 88, 220) 40%, rgb(255, 107, 52)); /* Standard syntax */
}
/*Animated Background*/
#secondBack {
margin: 0 auto;
position: absolute;
z-index: -1;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: linear-gradient(135deg, rgb(255, 107, 52) 40%, rgb(113, 88, 220));
background-size: stretch;
opacity: 0;
}
.animateBack {
animation: reveal 12s ease infinite;
}
@keyframes reveal {
0%,100% {
opacity: 0;
}
50% {
opacity: 1;
}
}
/*End of Animated Background*/
h1 {
font-size: 3em;
margin-top: 10%;
color: rgba(0,0,0,.75);
text-align: center;
text-transform: uppercase;
letter-spacing: .25em;
width: 100%;
transform: skewX(-8deg);
-ms-transform: skewX(-8deg);
-webkit-transform: skewX(-8deg);
-moz-transform: skewX(-8deg);
}
input {
border-radius: 100%;
background: none;
border: none;
width: 4rem;
height: 4rem;
margin: 1rem;
filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
animation: buttonPulse 2s ease infinite;
}
input::-webkit-color-swatch {
border: none;
border-radius: 100%;
padding: 0px;
}
input::-webkit-color-swatch-wrapper {
border: none;
border-radius: 100%;
padding: 0;
}
button {
margin: 30px 0;
padding: 10px 15px;
border-radius: 5px;
font-size: 1em;
font-family: 'Exo', sans-serif;
border: none;
filter: drop-shadow(0 0 5px rgba(0,0,0,0.5));
color: rgba(255,255,255,1);
background: rgba(0,0,0,0.5);
animation: buttonPulse 2s ease infinite;
transition: color 0.75s ease;
}
button:hover {
color: rgba(255,164,24);
}
@keyframes buttonPulse {
0% {
box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.25);
}
100% {
box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
}
}
h3 {
font-size: 0.8em;
color: rgba(0,0,0,.5);
text-align: center;
text-transform: none;
letter-spacing: 0.01em;
}