-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
113 lines (94 loc) · 1.46 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
109
110
111
112
113
body {
font-family: American Typewriter, serif;
margin: 0 auto;
text-align: center;
}
p {
font-family: Chalkduster, fantasy;
}
hr {
border-top: 10px solid blue;
border-bottom: none;
border-left: none;
border-right: none;
}
#logo {
background-image: url("./HEADERpic.jpg");
width: 80%;
margin: auto;
}
#logo_text {
width: 60%;
text-align: left;
color: white;
height: 500px;
padding: 50px;
}
a {
color: inherit;
text-decoration: none;
}
h1 {
font-size: 3rem;
}
h2 {
font-family: 'Roboto';
}
#menu {
display: flex;
flex-direction: row;
justify-content: space-between;
width: 70%;
margin: auto;
margin-top: 30px;
}
#menu li {
background-color: lightgrey;
padding: 20px;
list-style: none;
border-radius: 15px;
font-size: 1.4rem;
}
#about-title {
color: red;
text-decoration: underline;
text-align: left;
}
#site_content {
width: 70%;
padding-left: 130px;
text-align: left;
}
.about {
background-color: lightgrey;
padding: 10px;
border-radius: 15px;
}
#footer {
margin: auto;
text-align: center;
}
.topics {
display: flex;
flex-wrap: wrap;
margin: auto;
width: 80%;
margin-top: 20px;
}
.topics div {
width: 500px;
padding: 10px;
margin: 10px;
background-color: rgba(250, 220, 230, .8);
border-radius: 15px;
}
.selected_page a {
font-size: 2rem;
}
#health {
background-image: url("./students.jpg");
}
.health {
background-color: rgba(200,200,200,.8);
padding: 20px;
}