Compare commits
No commits in common. "a7a8b321afa795a54cc21878fca42567fa3d0836" and "bc0d471319937173f30836cd700cbcccdd12708d" have entirely different histories.
a7a8b321af
...
bc0d471319
4 changed files with 31 additions and 27 deletions
20
css/t1.css
20
css/t1.css
|
@ -3,20 +3,28 @@ body {
|
||||||
font-family: Arial, sans-serif;
|
font-family: Arial, sans-serif;
|
||||||
background-color: white;
|
background-color: white;
|
||||||
color: black;
|
color: black;
|
||||||
margin: 500;
|
margin: 0;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
h1, h2, h3 {
|
||||||
|
font-family: "Times New Roman", serif;
|
||||||
|
text-align: left;
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
button {
|
button {
|
||||||
padding: 5px 15px;
|
padding: 5px 10px;
|
||||||
border: 1px solid #000;
|
border: 1px solid #000;
|
||||||
background-color: white;
|
background-color: white;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: 100%;
|
||||||
|
height: auto;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
table {
|
table {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
@ -24,3 +32,7 @@ table {
|
||||||
border: 1px solid #000;
|
border: 1px solid #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
td, th {
|
||||||
|
padding: 5px;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
26
css/t2.css
26
css/t2.css
|
@ -1,26 +1,19 @@
|
||||||
/* t2.css - HTML+ */
|
/* t2.css - HTML+ */
|
||||||
body {
|
body {
|
||||||
font-family: Arial, sans-serif;
|
font-family: Verdana, sans-serif;
|
||||||
background-color: #f55555;
|
background-color: #f4f4f4;
|
||||||
color: #333333;
|
color: #333;
|
||||||
margin: 10;
|
margin: 0;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
output {
|
|
||||||
color: aqua;
|
|
||||||
font-size: 75px;
|
|
||||||
border:dotted #00ff62;
|
|
||||||
border-radius: 14px;
|
|
||||||
}
|
|
||||||
|
|
||||||
button {
|
button {
|
||||||
padding: 8px 15px;
|
padding: 8px 15px;
|
||||||
border: 1px solid #ddd;
|
border: 1px solid #ddd;
|
||||||
background-color: #0206ff;
|
background-color: #ddd;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
color: #ddd;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
button:hover {
|
button:hover {
|
||||||
|
@ -33,19 +26,14 @@ img {
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
th {
|
|
||||||
font-family:Impact;
|
|
||||||
color: rgb(77, 230, 143);
|
|
||||||
}
|
|
||||||
|
|
||||||
table {
|
table {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
border: 15px solid #e99d0f;
|
border: 1px solid #ddd;
|
||||||
}
|
}
|
||||||
|
|
||||||
td, th {
|
td, th {
|
||||||
padding: 8px;
|
padding: 8px;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
border: 8px solid #fc04fc;
|
border: 1px solid #ddd;
|
||||||
}
|
}
|
||||||
|
|
10
css/t3.css
10
css/t3.css
|
@ -8,12 +8,16 @@ body {
|
||||||
background-image: url(codevert.jpg);
|
background-image: url(codevert.jpg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
h1, h2, h3 {
|
||||||
|
font-family: 'Arial', sans-serif;
|
||||||
|
text-align: left;
|
||||||
|
color: #2c3e50;
|
||||||
|
}
|
||||||
|
|
||||||
button {
|
button {
|
||||||
padding: 10px 20px;
|
padding: 10px 20px;
|
||||||
border: none;
|
border: none;
|
||||||
background-color: #fc3e04;
|
background-color: #3498db;
|
||||||
color: white;
|
color: white;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
|
@ -21,7 +25,7 @@ button {
|
||||||
}
|
}
|
||||||
|
|
||||||
button:hover {
|
button:hover {
|
||||||
background-color: #ff9900;
|
background-color: #2980b9;
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
|
|
|
@ -17,7 +17,7 @@ h1, h2, h3 {
|
||||||
button {
|
button {
|
||||||
padding: 12px 25px;
|
padding: 12px 25px;
|
||||||
border: none;
|
border: none;
|
||||||
background-color: #fc3e04;
|
background-color: #1abc9c;
|
||||||
color: white;
|
color: white;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
|
|
Loading…
Reference in a new issue