@charset "UTF-8";
/* theme.css 全局样式 */
:root {
    --color-bg: #000000;
    --color-text: #00aa00;
}
body {
    background: var(--color-bg);
    color: var(--color-text);
    text-align:center;
}
/* 链接默认颜色 */
a {
    color:#0d0;
    margin:20px;
    text-decoration: none; /* 去掉下划线 */
}
/* 鼠标放上去变色 */
a:hover {
    color: orange;
    text-decoration: underline; /* 出现下划线 */
}
/* 点击按下瞬间 */
a:active {
    color: red;
}
/* 访问过之后的颜色 */
a:visited {
    color: purple;
}
video{
    width:200px;
    height:200px;
}
div{
    width:100%;
    margin:20px;
}
table{
    border-collapse:collapse; /* 边框合并 */
    margin:0 auto;  /* 表格整体居中 */
}
td,th{
    border:1px  solid #555;
    padding:5px;
    text-align:center;
}
