-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.css
119 lines (98 loc) · 1.48 KB
/
common.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
* {
font-family: "Segoe UI", Arial, "Microsoft Yahei", sans-serif;
margin: 0;
padding: 0;
}
a {
color: #0366d6;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.repo-link {
margin-left: 8px;
font-size: 0;
padding: 5px;
}
.repo-link:hover {
background: #E9EBEC;
border-radius: 3px;
}
.repo-link img {
width: 20px;
height: 20px;
}
.container {
width: 60%;
margin: 0 auto;
padding: 15px 0;
}
@media screen and (max-width: 760px) {
.container {
width: 90%;
}
.github {
display: none;
}
}
.tools {
margin-bottom: 15px;
display: flex;
align-items: center;
}
.btn-run {
background-color: #007acc;
cursor: pointer;
border: none;
padding: 8px 25px;
border-radius: 3px;
color: #fff;
}
.github {
position: absolute;
right: 0;
top: 0;
}
.star {
position: absolute;
right: 0;
top: 8px;
}
.error {
color: red;
}
textarea {
display: block;
border: 1px solid #dfe2e5;
width: 100%;
box-sizing: border-box;
padding: 5px;
}
.code {
height: 400px;
}
.code-lib {
height: 100px;
}
.version {
margin-left: 10px;
font-size: 14px;
}
.results-container {
position: relative;
padding: 5px;
border: 1px solid #dfe2e5;
margin-top: -1px;
}
.results-label {
font-size: 14px;
margin-bottom: 5px;
}
.results {
font-size: 14px;
min-height: 18px;
}
.example-item {
padding: 10px 0;
}