-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.css
More file actions
76 lines (65 loc) · 1.25 KB
/
home.css
File metadata and controls
76 lines (65 loc) · 1.25 KB
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
* {
box-sizing: border-box;
}
body {
color: white;
background-image: linear-gradient(to right, #B06AB3, #4568DC);
/* font-family: 'Open Sans', sans-serif; */
font-family: 'Montserrat', sans-serif;
}
#title {
margin-top: 25px;
font-size: 3.5rem;
}
#heading {
font-size: 2rem;
}
#deck>div, #selected-cards {
padding: 0 10px;
width: 100%;
display: flex;
flex-direction: row;
flex-wrap: wrap;
background-color: inherit;
justify-content: space-around;
margin-top: 30px;
}
img {
width: 75.9px;
height: 110px;
margin: 10px;
cursor: pointer;
transition: all 0.1s ease-in-out;
}
#selected-cards {
margin-top: 60px;
display: none;
}
#link {
display: flex;
justify-content: center;
}
.button {
display: none;
}
a {
text-decoration: none;
color: white;
width: 150px;
height: 50px;
background: #F2385A;
position: relative;
margin-left: auto;
margin-right: auto;
margin-top: 50px;
padding: 16px;
font-size: 50px;
border-radius: 10px;
box-shadow: 0px 15px 0px 0px #f02046, 0px 0px 20px 0px #bbb;
transition: all 0.05s;
font-size: 1.2rem;
}
a:active {
margin-top: 54px;
box-shadow: 0px 7px 0px 0px #f02046;
}