-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmainstyle.css
143 lines (134 loc) · 2.54 KB
/
mainstyle.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
@font-face {
font-family: 'farmshow';
src: url('res/Farmshow.woff2') format('woff2'),
url('res/Farmshow.woff') format('woff');
font-weight: normal;
font-style: normal;
font-display: swap;
}
body{
font-family: "farmshow";
background-color:papayawhip;
}
.titlebar {
flex-wrap: nowrap;
text-wrap: nowrap;
text-align: left;
padding-left: 40px;
font-weight: 300;
}
.logomenu {
display: flex;
vertical-align: middle;
align-items:center;
font-size: 30pt;
}
.logo {
width: 100px;
height: fit-content;
}
.menubaritems {
display:flex;
justify-content: center;
text-align: center;
align-items:end;
padding-left: 200px;
}
.navbar{
display:flex;
justify-content: center;
text-align: center;
}
.navlist {
display:flex;
list-style-type: none;
justify-content: space-evenly;
text-align: center;
}
.navlist li {
color: black;
list-style: none;
flex-wrap: nowrap;
text-wrap: nowrap;
}
.navlist a {
color: black;
text-decoration: none;
padding: 10px 15px;
display: block;
}
.navlist a:hover{
transition: transform 0.6s ease;
transform:scale(1.05);
transform:rotate(5deg);
text-decoration: underline;
}
.sec {
display: flex;
justify-content:left;
vertical-align: middle;
align-items: center;
}
h1 {
font-size: 20pt;
}
p {
font-size: 15pt;
}
main * {
font-family: Verdana, Geneva, Tahoma, sans-serif;
padding-bottom: 20px;
}
main ul{
font-size: 16pt;
}
.gallery-images {
display: flex;
flex-wrap:nowrap;
gap: 15px;
justify-content: center;
}
.gallery-images img {
width: 400px;
height: auto;
padding: 0px;
margin: 0px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
transition: transform 0.2s ease-in-out;
object-fit: cover;
overflow: hidden;
}
.gallery-images img:hover {
transform: scale(1.05);
}
.container {
padding: 0px;
display: flex;
justify-content: center;
align-items: center;
padding-bottom: 50px;
}
.button {
padding: 15px 25px;
background-color: #4CAF50;
color: white;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
border-radius: 8px;
border: none;
cursor: pointer;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: background-color 0.3s ease;
}
.button:hover {
background-color: #45a049;
}
.button:active {
background-color: #3e8e41;
}
.button:focus {
outline: none;
}