-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.css
62 lines (61 loc) · 868 Bytes
/
utils.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
.flex{
display:flex;
}
hr{
border: none;
height: 1px;
background: rgb(177, 175, 175);
margin-bottom: 2%;
margin-top: 0px;
}
.align-items{
align-items: center;
}
.justify-content{
justify-content: center;
}
.round-corner{
border-radius: 3%;
-webkit-border-radius: 3%;
-moz-border-radius: 3%;
-ms-border-radius: 3%;
-o-border-radius: 3%;
}
.center-img{
width: 32vw;
margin-bottom: 3vh;
display:none;
}
.bottom-img{
width: 6vw;
margin:0 1vw;
}
.border{
border-width: 2px;
border-style:solid;
border-color:orange;
}
.orange{
color:hsl(26, 100%, 55%);
}
.grey{
color:hsl(0, 0%, 51%);
}
.big{
font-size: 3rem;
}
.none{
display: none;
}
.weight-800{
font-weight: 800;
}
.item-img{
width: 4vw;
}
.display{
display: block;
}
.blur{
opacity: 60%;
}