* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
*:before,
*:after {
  box-sizing: border-box;
}
ul,
ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  max-height: 100%;
}
/* style */
body {
  background: #eee;
}
.globalHeader {
  margin: 20px;
}
.searchForm {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 600px) {
  .searchForm {
    max-width: 500px;
    margin-top: 200px;
    margin-bottom: 60px;
    margin-right: auto;
    margin-left: auto;
  }
}

.searchForm > input {
  width: 100%;
  margin-right: 10px;
  padding: 0 10px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.searchForm > button {
  white-space: nowrap;
  padding: 0 28px;
  border: none;
  background: #dda95a;
  border-radius: 4px;
  color: white;
  font-size: 16px;
}

.globalMain {
  max-width: 950px;
  margin-right: auto;
  margin-left: auto;
}

.siteList {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
  margin-right: 20px;
  justify-content: space-between;
}
@media (min-width: 600px) {
  .siteList {
    margin-left: 0;
    margin-right: -50px;
    justify-content: flex-start;
  }
}
.siteList > li {
  margin-bottom: 20px;
  /* margin-right: 50px; */
}
@media (min-width: 600px) {
  .siteList > li {
    margin-right: 50px;
  }
}
.siteList .site {
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: white;
  border-radius: 4px;
  padding: 20px 0;
  position: relative;
  cursor: pointer;
}
.siteList .site > .logo {
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 64px;
  text-transform: uppercase;
}
.siteList .site > .link {
  font-size: 14px;
  margin-top: 4px;
}
.siteList .site > .close {
  position: absolute;
  right: 2px;
  top: 0;
  display: none;
  cursor: default;
}
.siteList .site:hover > .close {
  display: block;
}

.siteList .addButton {
  border: 1px solid #ddd;
  background: white;
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px 0;
  border-radius: 4px;
}
.siteList .addButton .icon {
  width: 64px;
  height: 64px;
}
.siteList .addButton .text {
  font-size: 14px;
  margin-top: 4px;
}
.siteList .addButton .iconWapper {
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*# sourceMappingURL=index.d0ad6f02.css.map */
