Compare commits
No commits in common. "486a76cde0c04c723abba40c373a262d8bd25857" and "7b2a79364664422c1a14daef78cc736d4c201daf" have entirely different histories.
486a76cde0
...
7b2a793646
3 changed files with 23 additions and 20 deletions
10
css/t6.css
10
css/t6.css
|
@ -7,12 +7,16 @@ body {
|
||||||
padding: 60px;
|
padding: 60px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
h1, h2, h3 {
|
||||||
|
color: #9b59b6;
|
||||||
|
text-align: left;
|
||||||
|
margin-bottom: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
button {
|
button {
|
||||||
padding: 18px 35px;
|
padding: 18px 35px;
|
||||||
border: none;
|
border: none;
|
||||||
background-color: #e74c3c;
|
background-color: #9b59b6;
|
||||||
color: white;
|
color: white;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
|
@ -20,7 +24,7 @@ button {
|
||||||
}
|
}
|
||||||
|
|
||||||
button:hover {
|
button:hover {
|
||||||
background-color: #fda500;
|
background-color: #8e44ad;
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
|
|
23
css/t7.css
23
css/t7.css
|
@ -1,22 +1,23 @@
|
||||||
/* t7.css - XHTML 1.0 */
|
/* t7.css - XHTML 1.0 */
|
||||||
body {
|
body {
|
||||||
font-family: 'Segoe UI', serif;
|
font-family: 'Georgia', serif;
|
||||||
background-color: #ecf0f1;
|
background-color: #ecf0f1;
|
||||||
color: #34495e;
|
color: #34495e;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 70px;
|
padding: 70px;
|
||||||
}
|
}
|
||||||
|
|
||||||
output {
|
h1, h2, h3 {
|
||||||
font-size: 30px;
|
color: #3498db;
|
||||||
|
text-align: center;
|
||||||
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
button {
|
button {
|
||||||
padding: 15px 30px;
|
padding: 20px 40px;
|
||||||
border: 2px solid #e74c3c;
|
border: 2px solid #3498db;
|
||||||
background-color: white;
|
background-color: white;
|
||||||
color: #e74c3c;
|
color: #3498db;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
border-radius: 25px;
|
border-radius: 25px;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
|
@ -25,7 +26,7 @@ button {
|
||||||
|
|
||||||
button:hover {
|
button:hover {
|
||||||
transform: scale(1.1);
|
transform: scale(1.1);
|
||||||
background-color: #e74c3c;
|
background-color: #3498db;
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -39,13 +40,11 @@ img {
|
||||||
table {
|
table {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
border: 2px solid #ff9900;
|
border: 2px solid #3498db;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
td, th {
|
td, th {
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
border: 1px solid #ff9900;
|
border: 1px solid #3498db;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
10
css/t8.css
10
css/t8.css
|
@ -17,7 +17,7 @@ h1, h2, h3 {
|
||||||
button {
|
button {
|
||||||
padding: 20px 40px;
|
padding: 20px 40px;
|
||||||
border: none;
|
border: none;
|
||||||
background-color: #e74c3c;
|
background-color: #16a085;
|
||||||
color: white;
|
color: white;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
border-radius: 50px;
|
border-radius: 50px;
|
||||||
|
@ -27,7 +27,7 @@ button {
|
||||||
}
|
}
|
||||||
|
|
||||||
button:hover {
|
button:hover {
|
||||||
background-color: #ff9900;
|
background-color: #1abc9c;
|
||||||
transform: translateY(-3px);
|
transform: translateY(-3px);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -41,14 +41,14 @@ img {
|
||||||
table {
|
table {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
border: 2px solid #ff9900;
|
border: 2px solid #16a085;
|
||||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
||||||
}
|
}
|
||||||
|
|
||||||
td, th {
|
td, th {
|
||||||
padding: 25px;
|
padding: 25px;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
border: 1px solid #ff9900;
|
border: 1px solid #16a085;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -57,7 +57,7 @@ td {
|
||||||
}
|
}
|
||||||
|
|
||||||
th {
|
th {
|
||||||
background-color: #ff9900;
|
background-color: #16a085;
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue