-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdss.css
54 lines (48 loc) · 1.04 KB
/
dss.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
/**
* @name Basic button
*
* @description Button description.
*
* @markup
* <a href="#777" class="btn btn-primary">Button</a>
*/
/* Original CSS taken from Boostrap */
.btn {}
/**
* @name Button group
*
* @description Button group description.
*
* @markup
* <div class="btn-group">
* <button class="btn btn-default">Left</button>
* <button class="btn btn-default">Middle</button>
* <button class="btn btn-default">Right</button>
* </div>
*/
/* Original CSS taken from Boostrap */
.btn-group {}
/**
* @name DSS button
*
* @description DSS button with auto-generated states.
*
* @state :hover - Hovered button (auto-generated with pseudo class).
*
* @markup
* <a href="#777" class="dss-btn">DSS Button</a>
*/
.dss-btn {
display: inline-block;
padding: 10px;
background: #73c051;
border-radius: 3px;
color: #fff;
text-decoration: none;
}
.dss-btn.pseudo-class-hover,
.dss-btn:hover {
background: #309124;
color: #fff;
text-decoration: none;
}