-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcontentPageStudent3.css
105 lines (88 loc) · 1.44 KB
/
contentPageStudent3.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
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-image: url(images/Home/BGPEd.png);
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
background-size: cover;
}
header {
background: #006994;
color: white;
padding: 1rem 0;
text-align: center;
}
.logo {
width: 100px;
position: absolute;
top: 15px;
left: 200px;
box-shadow: 0 0 30px rgb(0, 0, 0);
}
nav {
background: #333;
color: white;
padding: 0.5rem;
text-align: center;
}
nav ul {
list-style: none;
padding: 0;
}
nav ul li {
display: inline;
margin: 0 1rem;
}
nav ul li a {
color: white;
text-decoration: none;
}
nav ul li a:hover {
text-decoration: underline;
}
main {
padding: 10rem;
}
h2 {
text-align: center;
color: white;
font-size: 50px;
}
.intro {
color: white;
}
.tip {
margin: 1rem 0;
padding: 1rem;
border-left: 5px solid #006994;
border-radius: 50px;
backdrop-filter: blur(10px);
box-shadow: 0 0 30px rgba(0, 0, 0, .5);
width: 800px;
}
.tip h3 {
margin-top: 0;
color: wheat;
}
.tip p {
color: white;
}
img {
max-width: 100%;
height: auto;
display: block;
margin: 0.5rem 0;
border-radius: 10px;
}
.involved {
color: white;
}
footer {
background: #333;
color: white;
text-align: center;
padding: 1rem 0;
}