-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.css
100 lines (85 loc) · 1.59 KB
/
main.css
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
@import url("https://fonts.googleapis.com/css?family=Neucha|Patrick+Hand+SC&display=swap");
.big-title {
font-family: Roboto;
text-align: center;
}
.taipy-image {
border-radius: .4em;
box-shadow: 0.3em 0.3em 0.7em #00000015;
transition: border 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
border: #2d2d2d 0.2em solid;
}
.taipy-button {
border-radius: 0;
}
/* CSS button */
.custom-btn {
margin-top: 10px;
width: auto;
height: 60px;
padding: 10px 25px;
border: 1px solid #F5F5F5;
font-family: 'Lato', sans-serif;
font-size: medium;
font-weight: 500;
background: transparent;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
display: inline-block;
}
.custom-btn.btn-14.red{
border: 2px solid #FF462B;
}
/* 14 */
.btn-14 {
background: transparent;
color: #FF462B;
z-index: 1;
font-family: 'Lato', sans-serif;
}
.btn-14:hover {
color: white;
}
.btn-14.red{
background: transparent;
color: #FF462B;
}
.btn-14.red:hover{
color: white;
}
.btn-14.red:after{
background: #FF462B;
}
.btn-14.red a{
color: white;
}
.btn-14.red:hover a{
color: white;
}
.btn-14:after {
position: absolute;
content: "";
width: 100%;
height: 0;
top: 0;
left: 0;
z-index: -1;
background: #F5F5F5;
transition: all 0.3s ease;
}
.btn-14:hover:after {
top: auto;
bottom: 0;
height: 100%;
background: #FF462B;
}
.btn-14:active {
top: 2px;
}
.btn-14 a{
text-decoration: none;
color: #F5F5F5;
font-weight: bold;
font-family: 'Lato', sans-serif;
}