-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
65 lines (56 loc) · 1000 Bytes
/
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Times New Roman';
}
body {
height: 100%;
width: 100%;
background-color: rgba(130, 130, 130, 0.500);
}
nav {
height: auto;
width: auto;
text-decoration: underline;
padding: 1rem;
font-size: 1.5rem;
}
nav h1 {
height: fit-content;
width: fit-content;
margin: auto;
cursor: pointer;
}
.main-box {
height: auto;
width: 100%;
padding: 0.5rem;
display: flex;
align-items: start;
justify-content: start;
flex-wrap: wrap;
}
.box {
border: 1px solid gray;
height: 25rem;
width: 25%;
padding: 0.5rem;
overflow: auto;
}
.box h3 {
font-size: 1.5rem;
text-align: center;
}
.box h4, p {
margin: 0.3rem;
}
.box p:hover {
background-color: rgb(170, 170, 170);
}
footer {
height: auto;
width: 100%;
padding: 1rem;
text-align: center;
}