java_web/learn1/web/css/common.css
2024-12-05 13:34:13 +08:00

62 lines
830 B
CSS

.container{
background-color: white;
position: relative;
margin: auto;
width: 80%;
}
body{
background-color: white;
}
a{
text-decoration: none;
color: white;
font-weight: bold;
}
table{
width:100%;
border-spacing: 0;
background-color: #c4c4c4;
}
tr{
height: 25px;
padding: 2px;
}
.tr-head{
background-color: #2bf;
text-align: center;
}
tr:nth-child(odd){
background:#F4F4F4;
}
button,.button{
background-color: #39f;
border: #39f solid 1px;
border-radius: 5px;
color: white;
padding: 5px;
line-height: 100%;
text-align: center;
margin: 5px;
}
.red {
COLOR: red
}
.blue {
color: blue;
}
.underline {
BORDER-BOTTOM: #c4c4c4 1pt solid;
BORDER-LEFT: #c4c4c4;
BORDER-RIGHT: #c4c4c4;
BORDER-TOP: #c4c4c4;
}