Added backgroundand favicon images. Changed transprency and color for all result tables. Added break tags.
This commit is contained in:
parent
dc0b1fbac3
commit
ea12e044a6
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 88 KiB |
|
|
@ -1,6 +1,21 @@
|
||||||
body {
|
body {
|
||||||
/* main website background color*/
|
/* main website background color*/
|
||||||
background-color: #868e85;
|
background-image: url('img/bg.jpg');
|
||||||
|
background-attachment: fixed;
|
||||||
|
background-position: center;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-size: cover;
|
||||||
|
/*background-color: #868e85;*/
|
||||||
|
}
|
||||||
|
|
||||||
|
.table td, .table th {
|
||||||
|
padding: .75rem;
|
||||||
|
vertical-align: top;
|
||||||
|
border-top: 0px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table-secondary, .table-secondary>td, .table-secondary>th {
|
||||||
|
background-color: #b6c59d1c;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bg-light {
|
.bg-light {
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,15 @@
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="title" content="TayMath">
|
||||||
|
<meta name="description" content="Automated calculus with step by step explanations">
|
||||||
|
<meta name="keywords" content="taymath, tay, math, calculus, help, tutor, derivative,
|
||||||
|
integral, riemann, optimize, max, min, maxmin, linearization, linear approximation,
|
||||||
|
rectangles, triangles, geometry, explained, simple, automatic, auto, automate, ruhphorte,
|
||||||
|
easy, college, ap, science, calculator, graph, step by step, teacher, cats, sin, cos, tan,
|
||||||
|
trig, trigonometry, statistics, algebra, general, delta, variable, summation, input, output">
|
||||||
|
<link rel="shortcut icon" type="image/png" href="favicon.ico">
|
||||||
<!-- Required meta tags -->
|
<!-- Required meta tags -->
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||||
|
|
@ -27,10 +36,13 @@
|
||||||
|
|
||||||
<title>TayMath.com - {% block title %}{% endblock %}</title>
|
<title>TayMath.com - {% block title %}{% endblock %}</title>
|
||||||
|
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
|
<div></div>
|
||||||
|
|
||||||
<nav class="navbar navbar-expand-md navbar-light bg-light border">
|
<nav class="navbar navbar-expand-md navbar-light bg-light border">
|
||||||
<a class="navbar-left" href="/"><img style="max-width:165.7px; margin-left: 7px; margin-right: 15.7px" src="static/img/logo.png"></a>
|
<a class="navbar-left" href="/"><img style="max-width:165.7px; margin-left: 7px; margin-right: 15.7px" src="static/img/logo.png"></a>
|
||||||
<button aria-controls="navbar" aria-expanded="false" aria-label="Toggle navigation" class="navbar-toggler" data-target="#navbar" data-toggle="collapse" type="button">
|
<button aria-controls="navbar" aria-expanded="false" aria-label="Toggle navigation" class="navbar-toggler" data-target="#navbar" data-toggle="collapse" type="button">
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,8 @@
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
<span>Approximating the integral of $f(x) = {{ value }}$ from ${{ lb }}$ to ${{ ub }}$ using ${{ si }}$ subintervals</span>
|
<span>Approximating the integral of $f(x) = {{ value }}$ from ${{ lb }}$ to ${{ ub }}$ using ${{ si }}$ subintervals</span>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
<table class="table table-hover" action="optimized">
|
<table class="table table-hover" action="optimized">
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr class="bg-dark text-white">
|
<tr class="bg-dark text-white">
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,9 @@
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
<span>Approximating the integral of $f(x) = {{ value }}$ from ${{ lb }}$ to ${{ ub }}$ using ${{ si }}$ subintervals</span>
|
<span><font size="5">Approximating the integral of $f(x) = {{ value }}$ from ${{ lb }}$ to ${{ ub }}$ using ${{ si }}$ subintervals</font></span>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
<table class="table table-hover" action="optimized">
|
<table class="table table-hover" action="optimized">
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr class="bg-dark text-white">
|
<tr class="bg-dark text-white">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue