-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
executable file
·83 lines (71 loc) · 1.3 KB
/
style.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
body {
margin:0;
background-color: #333;
color: #209781;
font-size: 28px;
font-family: 'Lobster', sans-serif;
}
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.jpg");
border: 4px solid #e9b64a;
border-radius: 4px;
cursor: default;
filter: brightness(100%);
transition: all 1s ease-in-out;
}
.card
{
width: 125px;
height: 125px;
display: inline-block;
margin: 3px;
background-image: url("img/karta.jpg");
border: 4px solid #51c8b2;
border-radius: 4px;
cursor: pointer;
/*filter: brightness(50%);*/
opacity: 0.5;
transition: all 1s ease-in-out;
}
.card:hover
{
border: 4px solid #e9b64a;
/* filter: brightness(100%);*/
opacity: 1.0;
}
.score
{
margin-top: 5px;
letter-spacing: 2px;
text-align: center;
}