-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
110 lines (96 loc) · 1.57 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
/* # 09090f #eeede7 */
body {
background-color: #ebebeb;
padding-bottom: 70px;
}
.navbar {
float:none;
margin:0 auto;
display: block;
text-align: center;
background-color: #eeede7;
font-size: 12px;
}
.navbutton {
width: 2vw;
height: 2vw;
margin-left: 3vw;
margin-right: 3vw;
}
.center-height {
height: 85vh;
display: inline-block;
}
h3 {
color: black;
font-family: Georgia, Garamont, serif;
}
h4 {
color: black;
font-family: Georgia, Garamont, serif;
}
p {
font-family: Georgia, Garamont, serif;
font-size: 18px;
color: black;
}
.img-eo {
max-height: 85vh;
max-width: 45vw;
}
.title-and-desc {
text-align: right;
float: right;
}
.img-desc {
width: 20px;
height: 20px;
margin-right: 2px;
float: left;
}
.menu-x {
margin-left: 30px;
word-spacing: 100vw;
}
@media (max-width:575px) {
.img-eo {
max-width: 70vw;
height: auto;
}
.center-height {
height: 110vw;
}
.navbutton {
width: 5vw;
height: 5vw;
}
.menu-x {
margin-left: 30px;
word-spacing: 4px;
}
.title-and-desc {
text-align: justify;
float: left;
margin-left: 20px;
margin-right: 20px;
}
}
.center-block {
display: block;
margin-left: auto;
margin-right: auto;
align-items: center;
}
/* unvisited link */
a:link {
color: rgb(0, 0, 0);
}
a:visited {
color: rgb(1, 11, 64);
}
a:hover {
color: rgb(174, 170, 96);
}
a:active {
color: blue;
}