-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
73 lines (64 loc) · 1.02 KB
/
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
62
63
64
65
66
67
68
69
70
71
72
73
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: Arial;
background: #1B1464;
}
.header {
text-align: center;
padding: 32px;
background: #333;
color: gold;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
flex-wrap: wrap;
}
/* @media (max-width: 500px) {
.header {
flex-direction: row;
}
} */
.header h1 {
font-size: 30px;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: .5rem;
}
.header h1 img {
height: 25px;
line-height: 1.3;
}
.header button {
padding: 5px 10px;
background: gold;
color: black;
border-radius: 5px;
}
.header button a {
text-decoration: none;
font-weight: bold;
color: black;
}
#gallery {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 1rem;
margin-top: 2rem;
padding: 1rem;
}
#gallery img {
width: min(300px, 100%);
height: 200px;
margin-top: 8px;
padding: 0 4px;
border-radius: 10px;
}