Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# mtsoftwareteam.github.io
MTSoftware's website
# mtsoftwareteam.github.io or mtsoftware.online
MTSoftware's - official website
178 changes: 178 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,178 @@
:root {
--color-bg-light: #e0e0e0;
--color-bg-dark: #121212;
--color-text-light: #333;
--color-text-dark: #f0f0f0;
--color-accent: #204080;
--color-white-box-light: #f5f5f5;
--color-white-box-dark: #1e1e1e;
--color-box-border-light: #aaa;
--color-box-border-dark: #444;
}

body {
margin: 0;
font-family: Tahoma, Verdana, sans-serif;
background-color: var(--color-bg-light);
color: var(--color-text-light);
transition: background-color 0.3s, color 0.3s;
}

body.dark {
background-color: var(--color-bg-dark);
color: var(--color-text-dark);
}

header {
background: linear-gradient(to bottom, #4b6cb7, #182848);
padding: 20px 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}

.nav-left,
.nav-right {
display: flex;
align-items: center;
gap: 10px;
}

nav {
flex-grow: 1;
text-align: center;
}

nav a {
display: inline-block;
background: linear-gradient(to bottom, #ffffff, #d4d4d4);
color: #333;
text-decoration: none;
padding: 10px 20px;
margin: 5px;
border-radius: 10px;
border: 1px solid #aaa;
box-shadow: inset 0 1px 0 #fff, 0 2px 5px rgba(0,0,0,0.3);
font-weight: bold;
transition: background 0.3s, color 0.3s;
}

body.dark nav a {
background: linear-gradient(to bottom, #2a2a2a, #1c1c1c);
color: #f0f0f0;
border: 1px solid #555;
box-shadow: inset 0 1px 0 #333, 0 2px 5px rgba(0,0,0,0.5);
}

nav a:hover {
background: linear-gradient(to bottom, #f0f0f0, #c0c0c0);
}

body.dark nav a:hover {
background: linear-gradient(to bottom, #3a3a3a, #2a2a2a);
}

.icon-button {
width: 40px;
height: 40px;
background: white;
border-radius: 10px;
border: 1px solid #aaa;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
box-shadow: inset 0 1px 0 #fff, 0 2px 5px rgba(0,0,0,0.3);
}

body.dark .icon-button {
background: #1e1e1e;
border: 1px solid #555;
box-shadow: inset 0 1px 0 #333, 0 2px 5px rgba(0,0,0,0.5);
}

.tab-content {
display: none;
background: white;
margin: 30px auto;
padding: 20px;
max-width: 800px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0,0,0,0.2);
transition: background 0.3s, color 0.3s;
}

body.dark .tab-content {
background: var(--color-white-box-dark);
}

.tab-content.active {
display: block;
}

h1, h2, h3 {
color: var(--color-accent);
text-shadow: 1px 1px 0 #fff;
transition: color 0.3s;
}

body.dark h1,
body.dark h2,
body.dark h3 {
color: #90c0ff;
text-shadow: none;
}

.program-logo {
max-width: 150px;
float: right;
margin-left: 20px;
border: 1px solid #ccc;
padding: 5px;
background-color: #f9f9f9;
border-radius: 5px;
}

body.dark .program-logo {
background-color: #2a2a2a;
border: 1px solid #555;
}

.download-button {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
background: linear-gradient(to bottom, #4CAF50, #388E3C);
color: white;
font-weight: bold;
border: none;
border-radius: 10px;
text-decoration: none;
box-shadow: 0 2px 5px rgba(0,0,0,0.3);
transition: background 0.3s;
}

.download-button:hover {
background: linear-gradient(to bottom, #66BB6A, #43A047);
}

.clearfix::after {
content: "";
display: block;
clear: both;
}

.changelog-box {
border: 1px solid var(--color-box-border-light);
padding: 15px;
margin-top: 20px;
background-color: var(--color-white-box-light);
transition: background 0.3s, border 0.3s;
}

body.dark .changelog-box {
border: 1px solid var(--color-box-border-dark);
background-color: var(--color-white-box-dark);
}
File renamed without changes
File renamed without changes
File renamed without changes
Loading