-
Notifications
You must be signed in to change notification settings - Fork 0
/
or.css
91 lines (79 loc) · 1.72 KB
/
or.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
/* Reset some default styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Set a background color for the entire page */
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
margin: 0;
padding: 0;
background-color: #bad3ee
}
/* Style the header section */
header {
/* background-color: #007bff; */
background: linear-gradient(145deg, #08023a 10%,#068A5E, #0fb7dd 85%);
color: #fff;
text-align: center;
padding: 20px;
}
/* Style the heading */
h1 {
font-size: 24px;
}
/* Style the helpline boxes */
.helpline {
background-color: #fff;
border: 1px solid #ddd;
border-radius: 5px;
margin: 20px;
padding: 15px;
}
/* Style the helpline headings */
.helpline h2 {
color: #007bff;
font-size: 20px;
}
/* Style the helpline phone numbers */
.helpline p {
margin: 0;
font-size: 18px;
}
/* Style the Emergency Contact box */
.emergency-contact {
background-color: #fff;
border: 1px solid #ddd;
border-radius: 5px;
margin: 20px;
padding: 15px;
}
/* Style the Emergency Contact heading */
.emergency-contact h2 {
color: #007bff;
font-size: 20px;
}
/* Style the Emergency Contact email */
.emergency-contact p {
margin: 0;
font-size: 18px;
}
/* Style the footer */
footer {
text-align: center;
padding: 10px;
/* background-color: #007bff; */
background: linear-gradient(145deg, #08023a 10%,#068A5E, #0fb7dd 85%);
color: #fff;
}
/* Style links in the footer */
footer a {
color: #fff;
text-decoration: none;
}
/* Change link color on hover */
footer a:hover {
text-decoration: underline;
}