-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
102 lines (90 loc) · 1.45 KB
/
App.css
File metadata and controls
102 lines (90 loc) · 1.45 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
* {
margin: 0%;
padding: 0%;
box-sizing:border-box
}
html,
body,
#root {
height: 100%;
width: 100%;
}
main{
height: 100%;
width: 100%;
padding: 1.5rem;
display: flex;
gap: 1rem;
}
main .left,
main .right {
height: 100%;
flex-basis: 50%;
border-radius: 0.7rem;
}
main .left {
background-color: #172d45;
position: relative;
}
.left .code,
.code pre,
.code pre code {
height: 100%;
width: 100%;
margin: 0;
border-radius: 0.7rem;
background-color: #172d45;
color:rgb(70, 188, 239)
}
main .left .review {
position: absolute;
bottom: 1rem;
right: 1rem;
background-color: rgb(124, 124, 181);
color: #000000;
padding: 0.5rem 2rem;
font-weight: 600;
cursor: pointer;
user-select: none;
border-radius: 0.7rem;
}
main .right {
background-color: #184c5f;
padding: 1rem 2rem;
font-size: 1.2rem;
overflow: auto;
}
/* Simple Loading */
.simple-loading {
text-align: center;
padding: 60px 20px;
color: #666;
}
.loading-spinner {
width: 40px;
height: 40px;
border: 3px solid #e0e0e0;
border-radius: 50%;
border-top-color: #667eea;
margin: 0 auto 20px;
animation: spin 1s ease-in-out infinite;
}
.simple-loading h3 {
margin-bottom: 10px;
color: #333;
}
.simple-loading p {
color: #888;
font-size: 0.9rem;
}
.review {
/* Normal button styles */
background: blue;
cursor: pointer;
}
.review.loading {
/* Loading state styles */
opacity: 0.7;
cursor: not-allowed;
background: gray;
}