Spaces:
Running
Running
File size: 1,846 Bytes
6de3e11 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 |
* {
box-sizing: border-box;
}
body {
font-family: "Helvetica Neue", "Roboto", sans-serif;
background-color: #f2f2f2;
margin: 0;
padding: 0;
}
#header {
background-color: #fff;
color: #333;
display: flex;
justify-content: center;
align-items: center;
height: 80px;
}
h1 {
font-size: 36px;
margin: 0;
}
#content {
background-color: #fff;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
margin: 50px auto;
max-width: 800px;
padding: 20px;
}
#content div {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-bottom: 20px;
}
#content a {
background-color: #fff;
border-radius: 5px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
color: #333;
padding: 10px;
text-align: center;
text-decoration: none;
transition: background-color 0.2s;
width: 20%;
}
#content a:hover {
background-color: #f2f2f2;
}
#content img {
cursor: pointer;
height: 50px;
transition: transform 0.2s;
width: 50px;
}
#content img:hover {
transform: scale(1.1);
}
#result {
background-color: #fff;
border-radius: 5px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
padding: 10px;
}
#result textarea {
border: none;
border-radius: 5px;
font-size: 16px;
height: 100px;
margin-top: 10px;
padding: 10px;
resize: none;
width: 100%;
}
/* #llm_result {
background-color: #fff;
border-radius: 5px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
padding: 10px;
}
#llm_result textarea {
border: none;
border-radius: 5px;
font-size: 16px;
height: 100px;
margin-top: 10px;
padding: 10px;
resize: none;
width: 100%;
} */
@media only screen and (max-width: 600px) {
#content a {
width: 100%;
}
} |