-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path4e.css
More file actions
40 lines (39 loc) · 901 Bytes
/
Copy path4e.css
File metadata and controls
40 lines (39 loc) · 901 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
.apply-button{
background-color: rgb(10, 102, 194);
color: white;
border: none;
border-radius: 20px;
font-size: 15px;
font-weight: bold;
cursor: pointer;
transition: background-color 0.15s;
padding-top: 12px;
padding-bottom: 12px;
padding-left: 24px;
padding-right: 24px;
}
.apply-button:hover{
background-color: rgb(2, 70, 138);
}
.save-button{
background: white;
color: rgb(10, 102, 194);
border-style: solid;
border-color: rgb(10, 102, 194);
border-radius: 20px;
font-size: 15px;
cursor: pointer;
transition: background-color 0.15s,border-width 0.15s;
padding-top: 12px;
padding-bottom: 12px;
padding-left: 24px;
padding-right: 24px;
}
.save-button:hover{
background-color: rgb(226, 240, 254);
border-width: 2px;
padding-top: 11px;
padding-bottom: 11px;
padding-left: 23px;
padding-right: 23px;
}