forked from CoCreate-app/CoCreateCSS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCoCreate-button.css
More file actions
126 lines (119 loc) · 2.42 KB
/
CoCreate-button.css
File metadata and controls
126 lines (119 loc) · 2.42 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
126
/*================================
Button
================================*/
button {
background: #3790ff;
padding: 10px;
color: #fff;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
font-size: 24px;
font-size: 1.5rem;
z-index: 5;
box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.4);
-webkit-transition: all .2s ease-out;
transition: all .2s ease-out;
cursor: pointer;
border-width: inherit;
outline: none;
}
.grow-hover:hover {
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
-webkit-transition: all .2s ease-out;
transition: all .2s ease-out;
}
.btn {
/*display: inline-block;*/
/*background-color: #192d3e;*/
/*color: white;*/
/*border: 0;*/
font-weight: bold;
/*padding: 0.5em 1em;*/
text-align: center;
/*border-radius: 5px;*/
}
.btn:focus,
.btn:hover{
/*opacity:.8;*/
/*text-decoration: none;*/
background-color:#005bcc;
}
/*================================
Styled Button
================================*/
button {
cursor: pointer;
outline: none;
}
button.outline {
display: inline;
position: relative;
z-index: 3;
background: transparent;
color: #1172c4;
font-size: 14px;
border-color: #1172c4;
border-style: solid;
border-width: 2px;
border-radius: 5px;
padding: 10px 30px;
text-transform: uppercase;
transition: all 0.2s linear;
margin-top:20px;
}
button.outline a {
text-decoration: none;
}
button.outline:hover {
color: white;
background: #1172c4;
border-color: white;
transition: all 0.2s linear;
}
button.outline:active {
border-radius: 22px;
}
button.white-blue {
font-weight: 700;
color: #1172c4;
border-color: white;
background: white;
}
button.white-blue:hover {
color: white;
background: #1172c4;
border-color: white;
}
button.green-white {
font-weight: 700;
color: #7dc21e;
border-color: #7dc21e;
background: transparent;
}
button.green-white:hover {
color: white;
background: #7dc21e;
border-color: #7dc21e;
}button.red-white {
font-weight: 700;
color: #dc3545;
border-color: #dc3545;
background: transparent;
}
button.red-white:hover {
color: white;
background: #dc3545;
border-color: #dc3545;
}