-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgallery.css
75 lines (69 loc) · 1.27 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
*{
font-family: "Josefin Sans", sans-serif;
margin: 0;
padding: 0s;
}
body {
background-color: #00b894;
scroll-behavior: smooth;
}
h1{
text-align: center;
margin-top: 30px;
margin-bottom: 30px;
background-color: #00b894;
border-radius: 19%;
margin-right: 30px;
border-radius: 30px;
margin-left: 30px;
};
img{
margin-right: 50px;
}
.main{
background-color: #ffebb8;
text-align: center;
padding-top: 40px;
margin-left: 30px;
margin-right: 30px;
border-radius: 30px;
}
.IE{
border-radius: 20px;
padding-left: 5px;
padding-bottom: 5px;
}
section a {
padding: 12px 30px;
border-radius: 4px;
outline: none;
text-transform: uppercase;
font-size: 14px;
font-weight: 500;
text-decoration: none;
transition: all 0.5s ease;
margin-bottom: 30px;
}
.button-container {
display: flex;
gap: 20px;
justify-content: center;
margin-top: 20px;
margin-bottom: 30px;
}
.btnone {
background: #fff;
color: #000;
}
.btnone:hover {
background: #00b894;
color: white;
}
.btntwo {
background: #00b894;
color: white;
}
.btntwo:hover {
background: #fff;
color: #000;
}