-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobal.css
More file actions
53 lines (46 loc) · 979 Bytes
/
Copy pathglobal.css
File metadata and controls
53 lines (46 loc) · 979 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
*{
font-family: 'Segoe UI', sans-serif, Arial, Helvetica;
box-sizing: border-box;
margin: 0;
padding: 0;
text-decoration: none;
}
a.btn-primary{
color: white;
background-color: rgb(55, 136, 241);
padding: 10px 20px;
transition: 300ms ease-in-out;
cursor: pointer;
}
button.btn-primary{
color: white;
background-color: rgb(55, 136, 241);
padding: 10px 30px;
border: none;
transition: 300ms ease-in-out;
cursor: pointer;
}
.btn-primary:hover{
background-color: rgb(44, 86, 141);
}
a.btn-secondary{
color: white;
background-color: rgb(32, 31, 31);
padding: 10px 20px;
transition: 300ms ease-in-out;
cursor: pointer;
}
button.btn-secondary{
color: white;
background-color: rgb(32, 31, 31);
padding: 10px 30px;
border: none;
transition: 300ms ease-in-out;
cursor: pointer;
}
.btn-secondary:hover{
background-color: rgb(63, 65, 66)
}
.black{
color: black;
}