-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
155 lines (128 loc) · 1.97 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
body{
height: 100%;
font-size: 16px;
font-family: monospace;
}
/* Make font sizes smaller on small devices*/
@media (max-width: 700px){
.page-header h1 {
font-size: 18px;
}
body {
font-size: 12px;
}
.img-arrow {
width: 10px;
height: 8px;
}
}
@media (min-width: 700px){
.img-arrow {
width: 20px;
height: 15px;
}
}
/* change width on main container */
.container-fluid {
max-width: 800px;
}
/* add extra padding for picture on about me page */
.picture {
padding-bottom: 10px;
}
/* style the text on about me page */
.letter, .letter a {
text-align: center;
color: #000000;
}
/* hide slides that are not current slide */
.slide {
display: none;
}
/* display current slide */
.current-slide {
display: inline;
}
/* indicate that items on page are clickable */
.item {
cursor: pointer;
}
.object {
background: #F3F3F3;
border: solid 1px;
padding: 4px;
margin: 1px;
}
.description {
display: none;
background: #E0E0E0;
border-top: solid 1px;
padding-top: 4px;
padding-left: 0px;
margin: -4px;
margin-top: 2px;
}
.description-title {
font-weight: bold;
}
.description-text {
font-size: 12px;
}
/* menu */
nav {
text-align: center;
padding-top: 5px;
}
nav li {
display: inline;
list-style: none;
}
nav a {
color: #000000;
padding: 5px;
}
nav a:hover{
color: #A0A0A0;
text-decoration: none;
}
nav a:active, a:visited {
color: #000000;
}
/* hide select menu on large displays */
nav select {
display: none;
}
@media (max-width: 700px){
nav ul {
display: none;
}
/* show select menu on small displays */
nav select {
display: inline;
}
}
/* slider navigation */
.slider-nav {
padding-top: 10px;
text-align: center;
}
.slider-nav a {
display: inline-block;
padding: 0px;
font-size: 20px;
text-decoration: none;
}
.slider-dots {
list-style: none;
display: inline-block;
padding: 0px;
vertical-align: middle;
}
.slider-dots li {
display: inline;
color: #000000;
font-size: 20px;
}
.slider-dots li.current-dot {
color: #A0A0A0;
}