-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
122 lines (112 loc) · 1.77 KB
/
style.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
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
body {
background: linear-gradient(
-45deg,
#ff9a9e,
#fad0c4,
#fad0c4,
#fbc2eb,
#a6c1ee,
#fbc2eb,
#a1c4fd,
#a1c4fd
);
background-size: 400% 400%;
animation: gradientAnimation 15s ease infinite;
width: 400px;
height: 400px;
border-radius: 20px;
}
@keyframes gradientAnimation {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.XT_256 {
font-family: monospace;
color: #000;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
padding: 0;
margin: 0;
}
.XT_256 h1 {
font: 500;
background: linear-gradient(
-45deg,
#ff9a9e,
#fad0c4,
#fad0c4,
#fbc2eb,
#a6c1ee,
#fbc2eb,
#a1c4fd,
#a1c4fd
);
animation: gradientAnimation 15s ease infinite;
color: #000000;
padding: 4px;
border-radius: 22px;
}
.XT_256 span {
margin: 0;
font-size: 22px;
}
.XT_257 {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 12px;
}
.XT_257 input {
border-radius: 8px;
border: none;
outline: none;
padding: 8px;
width: 100%;
margin-bottom: 12px;
}
.XT_257 textarea {
border-radius: 8px;
border: none;
outline: none;
padding: 8px;
width: 100%;
margin-bottom: 12px;
}
.XT_257 button {
border-radius: 8px;
padding: 8px;
width: 50%;
color: #ffffff;
background: #000;
font-size: 14px;
font: 800;
}
.XT_258 {
background: #000;
border-radius: 12px;
overflow-y: auto;
max-height: 300px;
}
.XT_258 p {
padding: 12px;
color: #ffffff;
font: 700;
font-size: medium;
}
.XT_258::-webkit-scrollbar {
width: 8px;
}
.XT_258::-webkit-scrollbar-thumb {
background-color: red;
border-radius: 8px;
}