-
Notifications
You must be signed in to change notification settings - Fork 126
Expand file tree
/
Copy pathApp.css
More file actions
125 lines (101 loc) · 1.78 KB
/
Copy pathApp.css
File metadata and controls
125 lines (101 loc) · 1.78 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
.app {
padding-left: 240px;
box-sizing: border-box;
}
.app .sider {
position: fixed;
width: 240px;
height: 100%;
top: 0px;
left: 0px;
background-color: #f7f7f7;
}
.app .sider h1 {
position: relative;
background-color: #f0f0f0;
padding: 10px 0 10px 28px;
height: 80px;
}
.app .sider h1 .header-name {
display: block;
font-size: 12px;
color: #999;
}
.app .sider img.logo {
position: absolute;
right: 10px;
top: 10px;
width: 32px;
}
.app .sider h1 span.example-title {
font-size: 20px;
display: block;
margin-top: 5px;
color: #333;
display: inline-block;
}
.app .sider h1 .ant-select {
margin-top: 5px;
color: #666;
margin-left: 10px;
}
.app .sider .scroll-container::-webkit-scrollbar {
width: 0.5rem;
height: 0.5rem;
}
.app .sider .scroll-container::-webkit-scrollbar-thumb {
transition: all 0.3s ease;
border-color: transparent;
background-color: #ddd;
z-index: 40;
}
.app .sider .scroll-container::-webkit-scrollbar-corner {
background-color: rgba(0, 0, 0, 0);
}
.app .sider ul, .app .sider li {
margin: 0;
padding: 0;
list-style: none;
}
.app .sider li {
line-height: 260%;
}
.app .sider li a {
display: block;
padding-left: 28px;
}
.app .sider li a.active {
color: #f90;
}
.app .sider .social {
padding-left: 28px;
margin-top: 20px;
line-height: 40px;
}
.app .example-container {
padding: 40px;
}
.app .example-container h1 {
border-bottom: 1px solid #eee;
padding-bottom: 15px;
margin-bottom: 15px;
}
.app .example-container .ant-form {
width: 600px;
}
.example-description {
color:#777;
font-size: 14px;
margin: 10px 0 0 0;
line-height: 150%;
}
.code-container {
margin: 0px 40px;
padding-bottom: 20px;
}
.code-viewer h5 {
font-size: 14px;
}
.code-viewer {
margin-bottom: 20px;
}