-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
173 lines (147 loc) · 2.68 KB
/
style.css
File metadata and controls
173 lines (147 loc) · 2.68 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
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
body{
margin:0px;
padding: 0;
background-color:#424242;
font-family:Roboto-Regular, Roboto-Light, Roboto-Bold, Roboto-Thin, sans-serif;
color: white;
text-decoration: none;
}
header{
background-color: black;
height: 30px;
margin: 0px;
}
header > a{
text-decoration: none;
display: inline;
margin-right: 6%;
color: inherit;
font-size: 20px;
font: Roboto-Thin;
}
#Title{
color: inherit;
margin-top: 17%;
margin-left: auto;
margin-bottom: 0px;
text-align: center;
Font: Roboto-Bold;
font-size: 72px;
position: static;
}
#SubTitle{
color: inherit;
font: Roboto-Thin;
margin-top: 2%;
text-align: center;
margin-left: auto;
font-size: 30px;
position: static;
}
#AboutTitle{
color: inherit;
font: Roboto-Bold;
font-size: 30px;
}
#AboutText{
color: inherit;
font: Roboto-Regular;
}
.topnav{
list-style-type: none;
overflow: hidden;
}
.topnav a {
float: left;
display: inline-block;
text-align: center;
text-decoration: none;
margin-right: 6%;
color: inherit;
font: Roboto-Thin;
position: static;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav .icon {
display: none;
}
/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
.topnav a:not(:first-child) {
display: none;
}
.topnav a.icon {
float: right;
margin-right: 0;
display: block;
}
.topnav .responsive {
position: relative;
}
.topnav.responsive a.icon {
margin-right: 0;
position: static;
right: 0;
top: 0;
}
.topnav.responsive a {
float: none;
display: block;
background-color: #424242;
margin-right: 0;
text-align: right;
}
.topnav a:first-child {
background-color: black;
}
}
.card {
/* Add shadows to create the "card" effect */
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
transition: 0.3s;
width: 200px;
background-color: #616161;
text-decoration: none;
color: white;
margin-top: 30px;
float: left;
margin-left: 30px;
}
/* On mouse-over, add a deeper shadow */
.card:hover {
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
.card > a {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
color: white;
text-decoration: none;
}
/* Add some padding inside the card container */
.container {
padding: 2px 16px;
}
.card > img {
height: 200px;
width: 200px;
}
.card a {
text-decoration: none;
}
footer{
position: absolute;
left: 0; right: 0; bottom: 0;
background-color: black;
margin-bottom: 0;
padding: 0;
height:20px;
}
#myTopnav {
background-color: black;
}