-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
117 lines (100 loc) · 1.76 KB
/
style.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color:rgba(0, 255, 136, 0.829);
}
main {
display: flex;
flex-direction: column;
justify-content: space-evenly;
gap: 20px;
}
.contactinfo {
display: flex;
text-align: center;
flex-direction: column;
}
.socialicons {
text-align: center;
flex-direction: row;
}
.resizesocial {
height: 25px;
width: 25px;
}
.site-nav ul {
display: flex;
list-style-type: none;
justify-content: space-evenly;
background-color: aqua;
border: 1px solid #000000;
}
.site-header {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: rgb(233, 241, 241);
border: 1px solid #000000;
}
.abouttext {
text-align: center;
}
.aboutimg {
display: flex;
flex-direction: row;
flex-grow: 1;
justify-content:space-around
}
.recent-post article {
display: flex;
flex-direction: column;
background-color: aqua;
border: 1px solid #000000;
justify-content: center;
align-items: center;
}
.projects-container {
display: flex;
flex-direction: column;
justify-content: space-evenly;
background-color: aqua;
border: 1px solid #000000;
}
h2 {
display: flex;
justify-content: center;
align-items: center;
background-color: aqua;
}
.project {
display: flex;
flex-direction: column;
background-color: aqua;
border: 1px solid #000000;
justify-content: center;
align-items: center;
}
.Art-image-container {
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
background-color: aqua;
border: 1px solid #000000;
}
.image-gallery {
list-style-type: none;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 5px;
}
.image-gallery img {
object-fit: cover;
border: 1px solid #000000;
border-radius: 20px;
}