-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
108 lines (91 loc) · 2.06 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
/* Reset some default styles */
body, h1, h2, p {
margin: 0;
padding: 0;
}
/* Set a vibrant background color */
body {
background-color: #ff9900; /* Orange */
color: #333; /* Dark gray text */
font-family: Arial, sans-serif;
line-height: 1.6;
}
/* Style the header */
header {
background-color: #333; /* Dark gray */
color: #fff; /* White text */
text-align: center;
padding: 20px;
}
/* Style the navigation menu */
nav ul {
list-style-type: none;
}
nav ul li {
display: inline;
margin-right: 20px;
}
nav ul li a {
text-decoration: none;
color: #fff;
font-weight: bold;
}
/* Style the main content */
main {
padding: 20px;
}
/* Style headings */
h1 {
font-size: 36px;
color: #ff9900; /* Orange */
margin-bottom: 20px;
}
h2 {
font-size: 24px;
color: #ff6600; /* Darker orange */
margin-bottom: 15px;
}
/* Style links */
a {
color: #ff9900; /* Orange */
text-decoration: underline;
}
a:hover {
color: #ff3300; /* Brighter orange on hover */
}
/* Style sections */
section {
margin-bottom: 30px;
padding: 20px;
background-color: #fff; /* White background for sections */
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Box shadow for sections */
}
/* Style the footer */
footer {
background-color: #333; /* Dark gray */
color: #fff;
text-align: center;
padding: 10px;
}
/* Add a border around images */
img {
border: 3px solid #ff9900; /* Orange border around images */
}
/* Style buttons */
.button {
display: inline-block;
padding: 10px 20px;
background-color: #ff9900; /* Orange */
color: #fff;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.button:hover {
background-color: #ff6600; /* Darker orange on hover */
}
/* Add a subtle drop shadow to images and buttons on hover */
img:hover, .button:hover {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}