File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ /*
2+ * @Date : 2020-10-18 10:52:43
3+ * @Author : MemoryShadow
4+ * @LastEditors : MemoryShadow
5+ * @LastEditTime : 2020-10-18 10:53:11
6+ * @Description : 基础组件css样式
7+ */
8+
9+ div .title {
10+ display : flex;
11+ }
12+
13+ a .button {
14+ display : flex;
15+ height : 30px ;
16+ width : 80px ;
17+ justify-content : center;
18+ align-items : center;
19+ border-radius : 5px ;
20+ -moz-box-shadow : 2px 2px 11px # A8A8A8 ;
21+ -webkit-box-shadow : 2px 2px 11px # A8A8A8 ;
22+ box-shadow : 2px 2px 11px # A8A8A8 ;
23+ margin : 10px ;
24+ }
25+
26+ a .button .enable {
27+ text-decoration : none;
28+ background-color : # 4E71F2 ;
29+ color : # FFF ;
30+ }
31+
32+ a .button .enable : hover {
33+ text-decoration : none;
34+ background-color : # 6c89f3 ;
35+ color : # FFF ;
36+ }
37+
38+ a .button .disable {
39+ text-decoration : line-through;
40+ background-color : # 4d4d4d ;
41+ color : # FFF ;
42+ pointer-events : none;
43+ }
You can’t perform that action at this time.
0 commit comments