Skip to content

Commit 2c14d76

Browse files
committed
Initial commit
0 parents  commit 2c14d76

File tree

1 file changed

+131
-0
lines changed

1 file changed

+131
-0
lines changed

base.css

+131
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,131 @@
1+
2+
.text-bold {
3+
font-weight: 700;
4+
}
5+
6+
.virus-body {
7+
display: -ms-flex;
8+
display: -webkit-flex;
9+
display: flex;
10+
-ms-flex-direction: column;
11+
-webkit-flex-direction: column;
12+
flex-direction: column;
13+
min-height: 100vh;
14+
}
15+
16+
.virus-row {
17+
display: -ms-flex;
18+
display: -webkit-flex;
19+
display: flex;
20+
-ms-flex-wrap: wrap;
21+
-webkit-flex-wrap: wrap;
22+
flex-wrap: wrap;
23+
}
24+
25+
.virus-body-content {
26+
-webkit-flex: 1 0 auto;
27+
flex: 1 0 auto;
28+
}
29+
30+
.virus-menu {
31+
border-right: 1px solid #EFEFEF;
32+
}
33+
34+
a.virus-menu-item {
35+
text-decoration: none;
36+
color: #868E96;
37+
}
38+
39+
.current-menu {
40+
color: #FFFFFF;
41+
background-color: #9500FF;
42+
font-weight: 700;
43+
}
44+
45+
.virus-button-style {
46+
color: #9500FF;
47+
border-color: #9500FF;
48+
}
49+
50+
.virus-button-style.danger {
51+
color: #FFFFFF;
52+
background-color: #FF8112 !important;
53+
border-color: #FF8112 !important;
54+
}
55+
56+
.virus-button-style.safe {
57+
-webkit-flex: 1 0 auto;
58+
flex: 1 0 auto;
59+
}
60+
61+
.virus-button-style:hover {
62+
color: #FFFFFF !important;
63+
background-color: #9500FF !important;
64+
border-color: #9500FF !important;
65+
}
66+
67+
.virus-button-style.danger:hover {
68+
background-color: #FF0000 !important;
69+
border-color: #FF0000 !important;
70+
}
71+
72+
.virus-button-style:active {
73+
color: #FFFFFF;
74+
background-color: #9500FF !important;
75+
border-color: #9500FF !important;
76+
box-shadow: none !important;
77+
}
78+
79+
.virus-button-style.danger:active {
80+
box-shadow: none !important;
81+
}
82+
83+
.virus-button-style.active {
84+
color: #FFFFFF;
85+
background-color: #9500FF !important;
86+
border-color: #9500FF !important;
87+
box-shadow: none !important;
88+
}
89+
90+
.btn-link.virus-button-style {
91+
border: none !important;
92+
}
93+
94+
.btn-link.virus-button-style:hover {
95+
border: none !important;
96+
background-color: transparent !important;
97+
color: #9500FF !important;
98+
}
99+
100+
ul.virus-list {
101+
list-style-type: none;
102+
padding: 0;
103+
}
104+
105+
ul.virus-list li.virus-list-item {
106+
padding: 0.01rem !important;
107+
margin: 1rem !important;
108+
background-color: #9500FF !important;
109+
border: 1px solid #9500FF;
110+
border-radius: 7px;
111+
box-shadow: 3px 5px 3px 2px #CFCFCF;
112+
}
113+
114+
ul.virus-list li.virus-list-item .virus-list-item-info {
115+
padding: 0.7rem !important;
116+
background-color: #FFFFFF !important;
117+
border: 1px solid #9500FF;
118+
border-radius: 5px;
119+
}
120+
121+
ul.virus-list li.virus-list-item .virus-list-item-info a {
122+
background-color: #FFFFFF;
123+
border: 1px solid #FFFFFF;
124+
border-radius: 5px;
125+
}
126+
127+
@media (max-width: 900px) {
128+
.virus-menu {
129+
border: none;
130+
}
131+
}

0 commit comments

Comments
 (0)