forked from mbaezpy/trentose-memory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
62 lines (52 loc) · 913 Bytes
/
styles.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
@import url(http://fonts.googleapis.com/css?family=Comfortaa|Courgette);
body {
font-family: 'Comfortaa', cursive;
}
h1 {
font-family: 'Comfortaa', cursive;
font-size: 3em;
text-align: center;
}
h1 > span{
font-family: 'Courgette', cursive;
color: #c12f2f;
}
.cards {
list-style: none;
padding-left: 0;
display: inline-block;
width: 100%;
}
.cards > li{
width: 200px;
height: 200px;
background: #efefef;
float: left;
margin-right: 20px;
margin-top: 20px;
text-align: center;
border: 2px solid #a5a4a4;
}
.cards > li h3 {
font-size: 3em;
}
.cards > .hidden h3 {
display: none;
}
.cards > .hidden {
background-image: url(img/bg.png);
background-repeat: no-repeat;
background-size: cover;
}
.cards > .selected {
border: 2px solid #dd8815;
}
.cards > .done {
opacity: 0.5;
}
.options {
text-align: center;
}
.options > button{
font-size: 1.5em;
}