技术宅

当前位置:首页 > 网络相关 > chatGPT

chatGPT

chatGPT写一个蓝色图片站首页css代码

时间:02-18 作者:
/* 全局样式 */
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #f0f0f0;
}

/* 顶部导航栏 */
header {
background-color:
/* 全局样式 */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
}

/* 顶部导航栏 */
header {
  background-color: #0077be;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

header a {
  color: #fff;
  text-decoration: none;
}

header a:hover {
  text-decoration: underline;
}

/* 主要内容区域 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

/* 图片卡片 */
.card {
  width: 30%;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: auto;
}

.card .card-title {
  font-size: 20px;
  margin: 10px 0;
}

.card .card-description {
  font-size: 16px;
  margin-bottom: 10px;
}

/* 底部版权信息 */
footer {
  background-color: #0077be;
  color: #fff;
  text-align: center;
  padding: 10px;
}