-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·100 lines (83 loc) · 1.5 KB
/
style.css
File metadata and controls
executable file
·100 lines (83 loc) · 1.5 KB
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
* {
box-sizing: border-box;
font-family: Ubuntu, Arial, Helvetica, sans-serif;
}
body {
width: 100%;
margin: 0 auto;
}
.header-container {
display: flex;
justify-content: space-around;
align-items: center;
background-color: rgba(0, 0, 0, 0.81);
color: rgb(236, 234, 234);
height: 70px;
}
.header-img {
width: 70px;
}
.header-title {
font-size: 1.3rem;
}
.header-login {
color: rgb(216, 216, 216);
font-size: large;
}
.header-login:hover {
color: rgb(177, 176, 176);
}
.text-section {
display: flex;
flex-direction: column;
text-align: center;
color: rgb(56, 56, 56);
font-size: 1.5rem;
font-weight: 500;
}
.gallery {
display: flex;
flex-wrap: wrap;
justify-content: center;
text-align: center;
max-width: 610px;
margin: 0 auto;
}
.gallery-card {
background-color: rgba(241, 241, 241, 0.755);
margin: 5px;
border-radius: 15px;
border: 2px solid rgba(241, 241, 241, 0.755);
box-shadow: 2px 3px rgba(206, 204, 204, 0.707);
padding: 10px;
width: 180px;
}
.gallery-card h4 {
color: rgb(136, 136, 136);
margin: 10px;
}
.gallery-card img {
width: 150px;
}
.gallery-card:hover {
background-color: rgba(215, 211, 211, 0.546);
}
.gallery-card:hover img {
width: 155px;
}
hr {
width: 150px;
margin: 30px auto;
}
.footer-container {
display: flex;
justify-content: center;
align-items: center;
}
.social-instagram , .social-linkedin {
width: 30px;
padding: 0px 5px;
}
.social-instagram:hover , .social-linkedin:hover {
width: 32px;
}