-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
99 lines (89 loc) · 1.54 KB
/
main.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
body {
margin: 0;
background-color: #26282e;
color: #209781;
font-family: "Lobster", sans-serif;
font-size: 28px;
}
a:link {
color: #209781;
text-decoration: none;
}
a:visited {
color: #209781;
}
a:active {
color: #209781;
}
a:hover {
color: #e9b64a;
}
h1 {
font-size: 64px;
font-weight: 400;
text-align: center;
letter-spacing: 5px;
margin-top: 20px;
margin-bottom: 0px;
}
p {
text-align: center;
margin-top: 5px;
margin-bottom: 25px;
letter-spacing: 2px;
}
.board {
width: 600px;
margin-left: auto;
margin-right: auto;
text-align: center;
}
.cardA {
width: 125px;
height: 125px;
display: inline-block;
margin: 3px;
background-image: url("img/karta.png");
border: 4px solid #e9b64a;
border-radius: 4px;
cursor: default;
filter: brightness(100%);
transition: all 0.3s ease-in-out;
}
.card {
width: 125px;
height: 125px;
display: inline-block;
margin: 3px;
background-image: url("img/karta.png");
border: 4px solid #51c8b2;
border-radius: 4px;
cursor: pointer;
filter: brightness(70%);
transition: all 0.3s ease-in-out;
}
.card:hover {
border: 4px solid #e9b64a;
filter: brightness(100%);
}
.score {
margin-top: 5px;
letter-spacing: 2px;
}
#play-again-btn {
font-family: "Lobster", sans-serif;
letter-spacing: 1px;
background-color: #51c8b2;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
#play-again-btn:hover {
color: #e9b64a;
}