-
Notifications
You must be signed in to change notification settings - Fork 78
/
style.css
45 lines (44 loc) · 875 Bytes
/
style.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
.banner{
z-index: 999;
position: relative;
background: rgb(23, 25, 27);
font-weight: 500;
padding: 12px 0;
}
.banner-wrap{
display: flex;;
justify-content: center;
align-items: center;
}
.banner-card{
font-size: 16px;
color: black;
background-color: rgb(99, 216, 218);
padding: 1px 10px;
border-radius: 10px;
margin-right: 4px;
font-weight: 600;
}
.banner-desc{
text-align: center;
color: white;
font-weight: 500;
}
.banner-btn{
outline: none;
border: none;;
color: black;
background-color: white;
padding: 2px 8px;
display: flex;
align-items: center;
margin-left: 8px;
border-radius: 8px;
min-width: max-content;
max-width: max-content;
transition: .3s ease-in-out;
}
.banner-btn:hover{
color: white;
background-color: black;
}