-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
100 lines (83 loc) · 1.45 KB
/
style.css
File metadata and controls
100 lines (83 loc) · 1.45 KB
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
* {
margin: 0px ;
font-family: 'Courier New', Courier, monospace;
}
body{
background-color: rgb(246, 242, 249);
}
h1{
font-size: 40px;
width: 100%;
text-align: center;
align-items: center;
}
h2{
padding-bottom: 2rem;
text-align: center;
}
h3{
text-align: center;
}
nav {
background-color: rgb(240, 177, 195);
display: flex;
justify-content: space-between;
align-items: center;
}
.navlinks {
list-style: none;
display: flex;
}
.navitem a {
margin-right: none;
display: flex;
padding: 15px 45px;
text-decoration: none;
font-size: larger;
font-weight: bold;
color: white;
}
.navitem:hover {
background-color: rgb(188, 84, 141);
}
.mainchunk {
background-color: white;
margin-top: .5vh;
padding-top: 3% ;
padding-left: 20%;
padding-right: 20%;
padding-bottom: 5rem;
}
.logo img {
width: 80px;
padding-left: 35px;
vertical-align: middle;
}
.images img{
margin: 2rem;
height: 300px;
min-height: 300px;
}
.imageelem{
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.cornerimg{
height: 70px;
}
footer{
margin-top: .5%;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width:100%;
background-color: rgb(240, 177, 195);
}
@media screen and (max-width: 1500px){
.imageelem{
flex-direction: column;
}
}