|
|
发表于 2023-6-12 22:36:32
|
显示全部楼层
|
[code]
<style>
body {
font-family: Arial, Helvetica, sans-serif;
padding: 20px;
}
h1 {
text-align: center;
}
form {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 20px;
}
input[type=text] {
width: 100%;
max-width: 500px;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 16px;
box-sizing: border-box;
}
button {
background-color: #4CAF50;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
.result {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.result-item {
margin: 10px;
padding: 10px;
background-color: #f2f2f2;
border-radius: 5px;
box-shadow: 0px 0px 5px #ccc;
text-align: center;
min-width: 200px;
}
.result-item h2 {
font-size: 24px;
margin-bottom: 10px;
}
.result-item p {
font-size: 16px;
margin-bottom: 5px;
}
.result-item .state-ok {
color: green;
}
.result-item .state-warning {
color: orange;
}
.result-item .state-danger {
color: red;
}
</style>
[/code]
加个样式不就是一样的嘛:lol:lol:lol |
|