-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_global.css
91 lines (74 loc) · 1.63 KB
/
_global.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
/* Global Classes */
.title-text{
font: normal bold 50px/ 72px var(--roboto);
}
.text-uppercase{
text-transform: uppercase;
}
/* Buttons */
.button{
padding: .8rem 2.2rem;
font: normal 500 16px/20px var(--roboto);
position: relative;
border: 3px solid transparent;
border-radius: 4px;
}
.button.primary-button{
background: var(--gradient-color);
background-clip: padding-box;
color: whitesmoke;
transition: background .6s ease;
box-shadow: var(--box-shadow);
}
.button.primary-button:hover{
background: whitesmoke;
background-clip: padding-box;
color: black;
}
.button.primary-button::after, .button.secondary-button::after{
position: absolute;
top: -2px; left: -2px;
bottom: -2px; right: -2px;
background: var(--gradient-color);
content: ' ';
z-index: -1;
border-radius: 4px;
}
.button.secondary-button{
background: white;
background-clip: padding-box;
transition: background .6s ease;
}
.button.secondary-button:hover{
background: var(--gradient-color);
color: whitesmoke;
box-shadow: var(--box-shadow);
}
p.para{
color: var(--text-color);
font: normal 500 16px/ 25px var(--roboto);
}
.font-roboto{
font-family: var(--roboto);
}
button:focus,
button:active
button:hover
.btn:active,
.btn.active{
outline: 0px !important;
box-shadow: none !important;
}
.title-h1{
font: normal bold 39px/ 40px var(--roboto);
}
.navbar_fixed{
position: fixed;
width: 100%;
top: -1px;
left: 0; right: 0;
background: #ffffff;
box-shadow: var(--box-shadow);
z-index: 999;
transition: background 1s ease;
}