-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
110 lines (95 loc) · 2.02 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
109
110
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");
* {
box-sizing: border-box;
}
body {
font-family: "Roboto", sans-serif;
margin: 0;
background-color: black;
background-image: url("./img/SecretWoods_Sktchup.jpg");
background-position: center;
background-size:cover ;
background-repeat: no-repeat;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
}
#header {
color: white;
text-align: center;
border: 1px;
border-style: solid;
border-color: darkseagreen;
border-radius: .6rem;
padding: .5rem;
justify-content: center;
display: flex;
flex-direction: column;
background-color: rgba(0, 0, 0, 0.75);
}
#title {
font-size: 1.5rem;
}
#info {
font-size: .8rem;
}
#container {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
#donations {
width: 60%;
display: flex;
flex-wrap: wrap;
overflow-y: auto;
max-height: 650px;
background-color: rgba(0, 0, 0, 0.75);
}
#locations {
width: 30%;
overflow-y: auto;
max-height: 650px;
color: white;
border: 1px;
border-style: solid;
border-color: darkseagreen;
border-radius: .6rem;
font-size: .8rem;
background-color: rgba(0, 0, 0, 0.75);
}
#locations span::before {
content: '⇨ ';
}
#itemcard {
border: 1px;
border-style: solid;
border-color: darkseagreen;
text-align: center;
color: white;
font-size: .6rem;
flex: 1;
display: flex;
flex-direction: column;
padding: .2rem;
width: 70px;
border-radius: .4rem;
height: 90px;
}
#itemcard input {
display: none;
}
#itemcard input:checked~.itemimg {
filter: grayscale(100%);
opacity: 25%;
}
footer {
font-size: .7rem;
text-align: center;
color: white;
}
a {
color: white;
}
@media screen and (max-width: 768px) {}