-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.css
More file actions
54 lines (51 loc) · 983 Bytes
/
gallery.css
File metadata and controls
54 lines (51 loc) · 983 Bytes
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
.navbar {
position: fixed;
top: 0;
width: 100%;
display: flex;
padding: 20px;
background-color: #379683;
}
/* Style the links inside the navigation bar */
.navbar a {
float: right;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 20px;
}
/* Change the color of links on hover */
.navbar a:hover {
background-color: #5cdb95;
}
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
background-color: black;
color: white;
}
.en-div{
width: 1300px;
margin: 30px;
}
.gallery-img{
margin-left: auto;
margin-right: auto;
display: block;
height: 300px;
width: auto;
}
.gallery-card{
background-color: rgba(248, 6, 127, 0.2);
margin-bottom: 10px;
width: 600px;
height: auto;
padding: 20px;
display: inline-block;
text-align: center;
border-style: solid;
border-width: 1px;
border-color: white;
border-radius: 5px;
}