-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
102 lines (84 loc) · 1.8 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
@font-face {
font-family: "DOSV";
src: url('dosv.woff') format('woff');
font-style: normal;
font-weight: normal;
}
body {
background-color: aliceblue;
background-image: url("img/alleyway.png");
font-family: "DOSV", "Courier New", monospace;
}
h1, h2{
font-family: "DOSV", "Courier New", monospace;
font-style: normal;
font-weight: normal;
}
h1{
font-size: 48px;
}
a{
color: aliceblue;
}
a:visited{
color: pink;
}
.side-navbar{
background-color: rgb(0 0 139/40%);
/*background-color: royalblue;*/
font-family: "DOSV", sans-serif;
font-style: normal;
font-weight: normal;
font-size: 20px;
border: solid;
border-width: 5px;
border-top-color: aliceblue;
border-left-color: aliceblue;
border-right-color: darkblue;
border-bottom-color: darkblue;
color: aliceblue;
height: 300px;
display: flex;
flex-direction: column;
/*filter: drop-shadow(-20px 20px 8px darkblue);*/
}
.content-container{
display: flex;
align-items: center;
justify-content: center;
}
.main-content-section{
background-color: rgb(0 0 139/40%);
font-size: 20px;
border: solid;
border-width: 5px;
border-top-color: aliceblue;
border-left-color: aliceblue;
border-right-color: darkblue;
border-bottom-color: darkblue;
color: aliceblue;
display: flex;
flex-direction: column;
padding: 30px;
width: 70%;
}
.navbar-item:hover{
text-shadow: 0 0 7px aliceblue;
}
.navbar-item{
margin: 20px;
}
.navbar-item a{
color: aliceblue;
}
.gallery{
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px; /* Adjust the gap between grid items */
}
.icon-align{
display: flex;
flex-direction: row;
align-items: right;
justify-content: right;
}