-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
108 lines (105 loc) · 2.09 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
* {
box-sizing: border-box;
}
/*
colors
#223843
#F5E2C8
#6C8EAD
#A05C7B
#F5E2C8
*/
body {
margin: 0;
padding: 0;
background-color: #6C8EAD;
color: #F5E2C8;
font-family: 'Montserrat', sans-serif;
letter-spacing: .07em;
}
img {
width: 100%;
}
.container {
max-width: 800px;
margin: 0 auto;
text-align: center;
}
.row {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.board {
width: 800px;
margin: 0 auto;
margin-top: 2em;
}
.cardA {
width: 150px;
height: 150px;
display: inline-block;
margin: .2em;
background: url(img/card.jpg) center no-repeat;
background-size: cover;
background-blend-mode: luminosity;
border: 4px solid #ebbe7eb6;
border-radius: 1.5em;
box-shadow: 8px 8px 16px #7f5ca0;
cursor: default;
filter: brightness(100%);
transition: all .2s ease-in-out;
}
.card {
width: 150px;
height: 150px;
display: inline-block;
margin: .2em;
background: #a05c7baf url(img/card.jpg) center no-repeat;
background-size: cover;
background-blend-mode: luminosity;
border: 4px solid #f5e2c8;
border-radius: 1.5em;
box-shadow: 8px 8px 16px #7f5ca0;
cursor: pointer;
filter: brightness(80%);
transition: all .2s ease-in-out;
}
.card:hover {
background: #0000007a url(img/card.jpg) center no-repeat;
background-size: cover;
box-shadow: 8px 8px 16px #1a25b96e;
margin-bottom: 2px;
}
.score {
margin: 1.5em 0;
font-weight: 900;
letter-spacing: 2px;
text-shadow: 1px 2px 0px #223843;
}
#title {
font-size: 4rem;
text-shadow: 3px 5px 0px #223843;
margin-top: 1.5em;
margin-bottom: 0;
}
#by-who {
font-size: .6rem;
font-weight: 600;
text-shadow: .5px .5px 0px #223843;
}
#zuzik,
#kuba {
color: #223843;
text-shadow: none;
font-weight: 900;
}
#zuzik:hover,
#kuba:hover {
color: #A05C7B;
}
#learn {
font-size: .6rem;
font-weight: 400;
}