forked from UNF-AIRO/FOIL-UI-Framework-Library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.css
More file actions
52 lines (40 loc) · 1.21 KB
/
config.css
File metadata and controls
52 lines (40 loc) · 1.21 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
/************************************************************************
* config.css
*
************************************************************************/
@import url('../../FOIL-UI.css');
.FOIL-button-regular-no-shadow {
background-color: rgb(0, 0, 0);
color:white;
padding: 10px 20px 10px 20px;
border-radius: 20px;
transition-duration: 0.5s;
}
.FOIL-button-regular-no-shadow:hover {
background-color:black;
color: white;
padding: 50px 50px 50px 50px;
border-radius: 20px;
transition-duration: 0.5s;
}
.FOIL-button-regular-no-shadow:active {
background-color:rgb(255, 0, 0);
color: white;
padding: 50px 50px 500px 50px;
border-radius: 20px;
transition-duration: 1s;
}
.FOIL-layout-regular-no-shadow {
background-color:rgba(7, 86, 8, 0.662);
border-radius: 10px 10px 20px 30px;
color: white;
padding: 40px 40px 40px 40px;
transition-duration: 1s;
}
.FOIL-layout-regular-no-shadow:hover {
background-color:black;
color: white;
padding: 50px 50px 50px 50px;
border-radius: 20px;
transition-duration: 0.5s;
}