-
Notifications
You must be signed in to change notification settings - Fork 0
/
dash.css
82 lines (77 loc) · 1.47 KB
/
dash.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
.smoge{
justify-content: space-around;
align-items: center;
}
.infoz{
width: 55.9em;
background-color: #BB2D3B;
color: rgb(231, 231, 231);
margin-left: 10em;
margin-right: 10em;
padding: 1.5em;
border-radius: 25px;
font-size: large;
}
.infoz h5,p{
margin: 0.5em;
}
.infoz p{
font-size: small;
}
hr{
opacity: 50%;
}
.dash{
margin-top: 2em;
display: flex;
justify-content: space-around;
align-items: center;
}
.cards{
display: flex;
justify-content: space-around;
align-items: center;
flex-wrap:wrap;
body {
overflow: hidden;
}
}
.cards .card{
cursor: pointer;
align-items: center;
justify-content: space-around;
text-align: center;
flex: 0 0 16.66em;
margin: 1em;
padding: 1.1em;
border: solid 2px #BB2D3B ;
border-radius: 9px;
/* flex: 0 0 33.333%; */
transition: ease 0.31s;
}
.cards i{
font-size: xx-large;
margin-bottom: 0.5em;
}
.cards .card:hover{
background-color: #BB2D3B;
color: rgb(240, 240, 240);
border: solid 2px #c42f3e ;
/* padding-left: 1.69em;
padding-right: 1.69em; */
}
.btntext{
margin-left: 0.3em;
}
.Dec{
padding: 0.1em;
cursor: pointer;
padding-left: 0.9em;
padding-right: 0.4em;
border-radius: 9px;
transition: ease 0.4s;
}
.Dec:hover{
color:#BB2D3B;
background-color: white;
}