-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
119 lines (102 loc) · 2.03 KB
/
styles.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
/* Modern CSS with Blue-Orange Theme */
:root {
--primary-blue: #1e3d59;
--secondary-blue: #3083dc;
--primary-orange: #ff6e40;
--light-orange: #ffd8cc;
--white: #ffffff;
--light-gray: #f5f5f5;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background-color: var(--light-gray);
line-height: 1.6;
}
.header {
background-color: var(--primary-blue);
color: var(--white);
padding: 2rem;
text-align: center;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.header h1 {
font-size: 2.5rem;
font-weight: 700;
letter-spacing: 2px;
position: relative;
display: inline-block;
}
.header h1::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 60%;
height: 3px;
background-color: var(--primary-orange);
}
h2 {
color: var(--primary-blue);
text-align: center;
margin: 2rem 0;
font-size: 1.8rem;
font-weight: 600;
padding: 0 1rem;
}
.ctn {
max-width: 1200px;
margin: 2rem auto;
padding: 0 1rem;
}
iframe {
width: 100%;
height: 600px;
border: none;
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
footer {
background-color: var(--primary-blue);
color: var(--white);
text-align: center;
padding: 1.5rem;
margin-top: 3rem;
}
/* Hover Effects */
.header h1:hover::after {
background-color: var(--secondary-blue);
transition: background-color 0.3s ease;
}
/* Media Queries for Responsiveness */
@media screen and (max-width: 768px) {
.header h1 {
font-size: 2rem;
}
h2 {
font-size: 1.5rem;
}
.ctn {
padding: 0 0.5rem;
}
iframe {
height: 400px;
}
}
@media screen and (max-width: 480px) {
.header {
padding: 1.5rem;
}
.header h1 {
font-size: 1.8rem;
}
h2 {
font-size: 1.2rem;
margin: 1.5rem 0;
}
}