-
Notifications
You must be signed in to change notification settings - Fork 0
/
schedule.css
122 lines (105 loc) · 2.52 KB
/
schedule.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
.nav-link {
margin: 0;
height: auto;
background: transparent;
padding: 0;
border: none;
}
/* button styling */
.nav-link {
--border-right: 6px;
--text-stroke-color: rgba(255,255,255,0.6);
--animation-color: rgba(255, 196, 0, 0.942);
--fs-size: 1 em;
letter-spacing: 3px;
text-decoration: none;
font-size: var(--fs-size);
font-family: "Arial";
position: relative;
text-transform: uppercase;
color: transparent;
-webkit-text-stroke: 1px var(--text-stroke-color);
}
.hover-text {
position: absolute;
box-sizing: border-box;
content: attr(data-text);
color: var(--animation-color);
width: 0%;
inset: 0;
border-right: var(--border-right) solid var(--animation-color);
overflow: hidden;
transition: 0.5s;
-webkit-text-stroke: 1px var(--animation-color);
}
.nav-link .hover-text {
width: 100%;
filter: drop-shadow(0 0 23px var(--animation-color))
}
.schedule-navbar {
display: flex;
justify-content: space-between; /* Center the navbar items */
list-style-type: none;
padding: 0;
}
.schedule-navbar li {
margin: 0 10px; /* Add some spacing between navbar items */
}
.nav-link {
font-family: Arial, Helvetica, sans-serif;
color: gold;
text-decoration: none;
}
body {
background-color: black;
}
h1 {
background-color: rgb(192, 42, 42);
font-family: Arial, Helvetica, sans-serif;
color:rgb(255, 196, 0, 0.942) ;
text-align: center;
border: solid rgb(255, 196, 0, 0.942);
border-radius: 5px;
}
h2, h3, h4 {
font-family: Arial, Helvetica, sans-serif;
color: rgb(255, 196, 0, 0.942);
display: flex;
flex-direction: column;
text-align: center;
}
.times {
font-family: Arial, Helvetica, sans-serif;
color: rgb(255, 196, 0, 0.942);
text-align: center;
list-style: none;
}
.logo {
display:flex;
margin-left:10%;
justify-content: center;
align-items: center;
}
.sabucco {
text-align: center;
color: rgb(255, 196, 0, 0.942);
font-family: Arial, Helvetica, sans-serif;
}
footer {
margin-top: 90px;
margin-left: 450px;
margin-right:500px;
padding-bottom: 10px;
border-bottom: 2px;
}
/* schedule.css */
/* Styles for larger screens */
h1 {
font-size: 32px;
}
/* Styles for smaller screens */
@media (max-width: 600px) {
h1 {
font-size: 24px;
}
}