-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
181 lines (153 loc) · 2.94 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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/* CSS stylesheet for samfritz.github.io */
/* Style tab menu and links */
.tablink {
background-color: #5D7A63;
font-color: white;
float: center;
border: 1px;
outline: 1px;
cursor: pointer;
padding: 14px 16px;
font-size: 17px;
}
.tablink:hover {
background-color: white;
font-color: #5D7A63;
}
#INFO-6620 {background-color: white;}
#Thing1 {background-color: white;}
#Thing2 {background-color: white;}
</style>
</head>
/* Set height of body and the document to 100%; page header and other header formatting */
body {
font-family: Helvetica, sans-serif;
font-size: 20px;
margin: 0;
height: 100%;
color: #404040;
}
/* Style the tab content (and add height:100% for full page content) */
.tabcontent {
font-color: #404040;
display: none;
padding: 100px 20px;
height: 100%;
}
.header {
border: 2px solid white;
padding: 40px;
text-align: center;
background: #ABC7B1;
font-color: #5D7A63;
}
.h1{
font-family: cursive;
font-size: 160px;
}
.h2{
font-size: 30px;
font: italic;
}
/* Main column */
.main {
-ms-flex: 70%; /* IE10 */
flex: 70%;
background-color: #f1f1f1;
padding: 20px;
}
.p{
font-family: Helvetica, sans-serif;
font-size: 20px;
font-color: #404040;
}
.h3{
font-size: 30px;
color: #404040;
font: bold;
}
.h4{
font-size: 15px;
font: italic;
text-align: right;
color: #404040;
}
.li{
content: "\00BB";
}
/* Footer */
.footer {
padding: 20px;
text-align: center;
background: #ABC7B1;
}
/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
.row {
flex-direction: column;
}
}
/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
.navbar a {
float: none;
width: 100%;
}
/* Add font awesome icons */
<a href="#" class="fa fa-twitter"></a>
<a href="#" class="fa fa-google"></a>
<a href="#" class="fa fa-linkedin"></a>
<a href="#" class="fa fa-instagram"></a>
/* Adds CSS stylesheet */
<style>
.fa {
font-size: 30px;
padding: 20px;
width: 150px;
text-align: center;
text-decoration: none;
margin: 5px 2px;
}
.fa-twitter {
background: #55ACEE;
color: white;
}
.fa-google {
background: #dd4b39;
color: white;
}
.fa-linkedin {
background: #007bb5;
color: white;
}
.fa-instagram {
background: #125688;
color: white;
}
* {
box-sizing: border-box;
}
/* Unused CSS formatting
/* Image in side panel */
/* Column container */
/* .row {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.side {
-ms-flex: 30%;
flex: 30%;
background-color: #f1f1f1;
padding: 20px;
.table{
text-align: left;
line-height: normal;
padding-top: 12px;
padding-bottom: 12px;
border: 1px solid #ddd;
padding: 8px;
vertical-align: top;
}
} */