-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.scss
57 lines (53 loc) · 1.02 KB
/
styles.scss
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
body {
font-family: 'Open Sans', sans-serif;
padding: 20px;
margin: 0 auto;
}
.item-list {
border: 1px solid #ccc;
border-radius: 4px;
overflow: hidden;
li > * {
border-bottom: 1px solid #ccc;
}
li:last-child > * {
border-bottom: 0;
}
}
.card {
// transition: .15s all ease;
display: flex;
flex-direction: column;
background-color: white;
font-family: 'Open Sans', sans-serif;
overflow: hidden;
border-left: 4px solid transparent;
cursor: pointer;
&:hover {
background-color: rgb(253, 253, 214);
}
&--picked {
background-color: hsl(138, 94%, 81%);
}
}
.card--rarity-basic,
.card--rarity-starter {
border-left: 4px solid hsl(0, 0%, 76%);
}
.card--rarity-common {
border-left: 4px solid hsl(0, 0%, 48%);
}
.card--rarity-uncommon {
border-left: 4px solid hsl(183, 67%, 70%);
}
.card--rarity-rare {
border-left: 4px solid hsl(40, 99%, 64%);
}
.card--rarity-boss {
border-left: 4px solid hsl(290, 97%, 62%);
}
ul.list-unstyled {
list-style: none;
padding: 0;
margin: 0;
}