-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
123 lines (114 loc) · 1.81 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
123
#D1D1D1 #DBDBDB #85C7F2 #636363 #4C4C4C html {
margin: 0;
}
body {
margin: inherit;
background-color: #000000;
font-family: monospace;
border: 2px solid #fff000;
min-height: 100vh;
}
.container {
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
}
h1 {
font-size: 3rem;
text-align: center;
}
h1 span {
background-color: #fff000;
display: inline-block;
color: #000;
padding: 14px;
}
.input-area {
display: flex;
justify-content: center;
border-bottom: #fff000 2px solid;
padding: 12px;
}
input {
accent-color: #fff000;
color: #fff000;
background: transparent;
padding: 10px;
border: 2px #fff000 solid;
outline: transparent;
font-size: 1rem;
}
button {
background-color: #fff000;
color: #000;
border: none;
padding: 14px;
text-align: center;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
#output {
height: 100%;
padding: 12px;
}
.cards {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
width: 100%;
height: 100%;
gap: 1.5rem;
}
.cards .card {
width: 100%;
height: 100%;
background-color: #fff000;
border-radius: 10px;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
transition: all 0.5s ease;
}
.cards .card h6 {
font-size: 0.8rem;
color: #000;
text-align: center;
/* margin: 0; */
}
#loader {
display: none;
color: #fff000;
text-align: center;
animation: blinking alternate 1s infinite;
}
@keyframes blinking {
0% {
opacity: 0;
}
50% {
opacity: 1;
}
100% {
opacity: 0;
}
}
#error {
color: #fff000;
text-align: center;
}
.footer {
color: #fff000;
text-align: center;
margin-top: 4rem;
}
.footer h5 {
font-size: 1.5rem;
margin: 0;
}
a[href] {
color: #fff000;
}