-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
66 lines (56 loc) · 1005 Bytes
/
style.css
File metadata and controls
66 lines (56 loc) · 1005 Bytes
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
*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
.button-container {
display: flex;
flex-wrap: wrap;
gap: 1rem;
align-items: center;
width: 100%;
padding: 1rem;
}
button.flat-btn {
color: #FFF;
font-size: 1.25rem;
font-weight: 600;
border: 2px solid #FFF;
padding: 1rem;
border-radius: 6px;
cursor: pointer;
min-width: 8rem;
transition: all 0.2s ease-in-out;
}
button.success {
background-color: #4CAF50;
}
button.success:hover {
background-color: #FFF;
color: #4CAF50;
border: 2px solid #4CAF50;
}
button.info {
background-color: #2196F3;
}
button.info:hover {
background-color: #FFF;
color: #2196F3;
border: 2px solid #2196F3;
}
button.warning {
background-color: #FF9800;
}
button.warning:hover {
background-color: #FFF;
color: #FF9800;
border: 2px solid #FF9800;
}
button.error {
background-color: #F44336;
}
button.error:hover {
background-color: #FFF;
color: #F44336;
border: 2px solid #F44336;
}