-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.css
99 lines (86 loc) · 1.56 KB
/
gallery.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
*{
margin: 0;
padding: 0;
}
body{
background-color: whitesmoke;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
li, a{
font-weight: 500;
font-size: 13px;
color: aliceblue;
text-decoration: none;
}
header{
width: 100%;
min-height: 10vh;
background-color: rgba(5, 8, 58, 0.922);
}
nav{
display: flex;
padding: 2% 6%;
justify-content: space-between;
align-items: center;
}
.logo{
cursor: pointer;
color: whitesmoke;
margin-right: auto;
font-size: 25px;
}
.nav_links{
text-align: right;
flex: 1;
}
.nav_links li{
list-style: none;
display: inline-block;
padding: 8px 12px;
position: relative;
}
.nav_links li a{
transition: all 0.3s ease 0s;
}
.nav_links li a:hover{
color: rgb(224, 75, 105);
}
/* Gallery*/
.title{
font-size: x-large;
text-align: center;
margin: 20px;
margin-bottom: 15px;
color: rgba(5, 8, 58, 0.922);
}
.content{
text-align: center;
font-size: large;
margin-bottom: 8px;
color: #f9347c;
}
hr{
border: 3px solid rgba(5, 8, 58, 0.922);
border-radius: 3px;
width: 10%;
margin: 17px 0px 20px 680px;
}
.images{
display: flex;
max-width: 2000px;
width: 100%;
flex-wrap: wrap;
}
.images:hover{
border: 1px solid white;
}
.image img{
width: 360px;
height: 220px;
margin: 5px;
margin-left: 10px;
}
.desc {
padding: 15px;
text-align: center;
}