-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
134 lines (119 loc) · 1.83 KB
/
Copy pathstyle.css
File metadata and controls
134 lines (119 loc) · 1.83 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
html {
width: 100%;
background-color: #ff6a00;;
}
.option a {
display: block;
text-decoration: none;
color: #fff;
font-size: 16px;
margin-bottom: 16px;
padding: 8px;
text-align: center;
background-color: #ff6a00;
border-radius: 8px;
cursor: pointer;
}
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
font-family: '8BIT WONDER', sans-serif;
font-size: 13px;
}
h1 {
color: #ff4015;
font-size: 50px;
font-family: '8BIT WONDER', sans-serif;
}
h2 {
color: #e22400;
font-size: 24px;
font-family: '8BIT WONDER', sans-serif;
}
img {
cursor: pointer;
}
#shop {
margin-top: 32px;
}
.option {
display: flex;
flex-direction: column;
align-items: center;
width: 200px;
margin: 16px;
padding: 16px;
background-color: #ff8648;
border-radius: 8px;
}
.option h3 {
color: #fff;
font-size: 24px;
margin-bottom: 8px;
}
.option p {
color: #ffffff;
font-size: 16px;
margin-bottom: 16px;
}
.option button {
width: 100px;
padding: 8px;
font-size: 16px;
background-color: #e22400;
border: none;
border-radius: 0;
cursor: pointer;
}
.center {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.title-container {
display: flex;
align-items;
}
#splash-text {
color: yellow;
padding: 2px 8px;
margin-left: 310px;
margin-top: -25px;
font-size: 15px;
position: absolute;
display:block;
-webkit-transform: rotate(-20deg);
transform: rotate(-20deg);
}
@keyframes rainbow {
0% {
color: red;
}
20% {
color: orange;
}
40% {
color: yellow;
}
60% {
color: green;
}
80% {
color: blue;
}
100% {
color: magenta;
}
}
.rainbow {
animation: rainbow 2s infinite;
}
input {
width: 100%;
border: 5px solid #673418;
border-radius: 2px;
}