-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
125 lines (110 loc) · 1.58 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
114
115
116
117
118
119
120
121
122
123
124
125
* {
background-color: #f5f5f5;
margin: 0;
padding: 0;
text-align: center;
}
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-family: Dongle, sans-serif, Arial, Helvetica, sans-serif;
}
.imgDiv > img {
width: 300px;
height: 300px;
}
.logoimg > img {
width: 150px;
height: 150px;
}
.imgDiv {
padding-top: 75px;
position: relative;
}
.imgDiv > h1 {
position: absolute;
bottom: 90px;
right: 135px;
}
h2 {
padding-bottom: 0.5rem;
font-size: 30px;
}
.insidediv {
border-bottom: 2px grey solid;
width: 75vw;
}
h3 {
padding-top: 0.8rem;
font-size: 23px;
}
a {
text-decoration: none;
color: inherit;
}
a:hover {
color: rgb(82, 82, 82);
}
nav {
width: 80vw;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.current {
color: hotpink;
}
ul {
display: flex;
justify-content: center;
width: 100%;
border-bottom: 2px solid grey;
}
li {
list-style: none;
font-size: 30px;
padding: 0 5px 10px 5px;
}
.mainSec {
min-height: 70vh;
}
footer {
width: 100%;
display: flex;
}
p {
padding-left: 40px;
}
@media screen and (min-width: 580px) {
li {
padding: 0 30px 5px;
}
}
@media screen and (min-width: 760px) {
nav {
flex-direction: row;
}
ul {
justify-content: flex-end;
}
.rightpad {
margin-right: 100px;
}
}
@media screen and (min-width: 1024px) {
li {
padding: 0 35px 5px;
}
}
@media screen and (max-width: 780px) {
nav {
position: relative;
}
ul {
position: absolute;
bottom: 2px;
}
}