-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
executable file
·101 lines (86 loc) · 1.41 KB
/
index.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
/* code here... */
pre {
margin: 0;
}
.container {
display: flex;
}
.title{
margin: 20px 0;
padding-left: 16px;
font-size: 22px;
}
.side {
border: 1px solid #ccc;
flex: 1 0 0;
margin: 16px;
border-radius: 5px;
position: relative;
}
.side-left {
height: 700px;
}
.header {
display: flex;
margin-bottom: 0;
background-color: #96b97d;
border-bottom: 1px solid rgba(0, 0, 0, .125);
justify-content: space-between;
align-items: center;
padding: 10px 10px;
}
.header .btn {
flex: 0 0 auto;
width: 100px;
padding: 6px 12px;
text-align: center;
border: none;
color: white;
}
.button-notice {
width: 64px;
height: 24px;
color: #6c757d;
}
.btn-run {
background-color: #198754;
border-radius: 4px;
cursor: pointer;
}
.btn-run:hover {
background-color: #157347;
border-radius: 4px;
cursor: pointer;
}
.coding {
width: 100%;
height: 100%;
padding: 20px;
box-sizing: border-box;
resize: none;
height: 645px;
border: none;
}
.language-php {
}
#toast {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
background-color: #157347;
opacity: 0;
color: #fff;
padding: 8px;
border-radius: 4px;
}
@keyframes spin1 {
100% {
opacity:1
}
}
@keyframes spin2 {
100% {
transform: rotate(-360deg);
}
}