-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
executable file
·116 lines (97 loc) · 1.72 KB
/
Copy pathstyles.css
File metadata and controls
executable file
·116 lines (97 loc) · 1.72 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/* Reset some default styles */
body, h1, p, ul, li {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
height: 100%;
}
body {
font-family: Arial, sans-serif;
line-height: 1.6;
background: #f4f4f4;
color: #333;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
}
header {
background: url('https://res.cloudinary.com/dshrollx4/image/upload/v1724123510/logoLight_hfiiun.png') no-repeat center center/cover;
background: #053363;
color: black;
padding: 10px;
text-align: center;
}
header .logo {
max-width: 150px;
margin-top: 20px;
}
header h1 {
font-size: 2.5rem;
margin-bottom: 10px;
}
header p {
font-size: 1.2rem;
}
main {
background: black;
flex: 1;
color: #fff;
padding: 20px 0;
text-align: center;
}
nav ul {
list-style: none;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
padding: 60px 0;
}
nav li {
display: inline;
}
nav a {
text-decoration: none;
color: #007BFF;
font-size: 1.2rem;
padding: 15px 30px;
border: 2px solid #007BFF;
border-radius: 5px;
transition: background 0.3s, color 0.3s;
display: inline-block;
}
nav a:hover {
background: #007BFF;
color: #fff;
}
footer {
background: #053363;
color: white;
padding: 0px 0;
text-align: center;
position: relative;
width: 100%;
}
footer .container {
width: 90%;
margin: 0 auto;
}
footer p {
font-size: 0.9rem;
}
/* Responsive Design */
@media (max-width: 768px) {
header h1 {
font-size: 2rem;
}
nav a {
font-size: 1rem;
padding: 10px 20px;
}
footer p {
font-size: 0.8rem;
}
}