-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle-h.css
90 lines (74 loc) · 1.25 KB
/
style-h.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
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
body {
font-family: Arial, sans-serif;
background: url('Picture/background.png') no-repeat center center fixed;
background-size: cover;
}
header {
background-color: rgba(255, 111, 97, 0.8);
color: #fff;
padding: 10px 20px;
}
.logo {
font-size: 1.5rem;
font-weight: bold;
}
.nav-link {
color: #fff;
text-decoration: none;
padding: 0 15px;
}
.nav-link:hover {
text-decoration: underline;
}
main {
padding: 20px;
margin: 0;
background: rgba(255, 255, 255, 0.8);
border-radius: 8px;
max-width: 100%;
}
main .row {
margin: 0;
}
main h2 {
color: #333;
}
main p {
color: #555;
}
footer {
background-color: rgba(165, 216, 255, 0.8);
color: #003366;
padding: 15px 20px;
text-align: center;
}
footer a {
color: #003366;
text-decoration: none;
margin: 0 10px;
}
footer a:hover {
text-decoration: underline;
}
@media (max-width: 767.98px) {
.navbar-nav {
padding: 15px;
background-color: rgba(255, 111, 97, 0.8);
}
.nav-link {
padding: 10px;
text-align: center;
}
}
.PR {
margin-top: 5rem;
}
.bg-light {
border-radius: 10px;
}