forked from docker/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_buttons.scss
executable file
·71 lines (61 loc) · 1.28 KB
/
_buttons.scss
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
/*
*
* Buttons ***********************************************************************
*
*/
ul.buttons {
list-style: none;
width: 450px;
margin: 0 auto;
}
a.button {
color: #fff;
}
a.button.outline-btn {
color: #0087C8;
}
.button {
margin: 10px 10px 10px 0;
font-family: Geomanist Book;
padding: 12px 35px 10px;
min-width: 200px;
box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1);
float: left;
text-align: center;
&:hover {
color: #fff;
opacity: 0.7;
}
}
.primary-btn {
background: #1488C6;
border: 1px solid rgba(0, 0, 0, 0.1);
text-shadow: 0 1px rgba(0, 0, 0, 0.2);
}
.secondary-btn {
background-color: rgba(255, 255, 255, 0.2);
box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1);
border: 1px solid rgba(255, 255, 255, 0.1);
text-shadow: 0 1px rgba(0, 0, 0, 0.2);
}
.transparent-btn {
background-color: rgba(0, 0, 0, 0.2);
box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1);
border: 1px solid rgba(0, 0, 0, 0.1);
text-shadow: 0 1px rgba(0, 0, 0, 0.2);
}
.outline-btn {
background: #fff;
border: 1px solid;
border-color: #0087C8;
text-decoration: none;
margin: 0;
}
.outline-btn:hover,
.primary-btn:hover,
.secondary-btn:hover {
opacity: 0.8;
}
.outline-btn:hover {
color: #1488C6;
}