Spaces:
Runtime error
Runtime error
File size: 1,877 Bytes
f3b1912 |
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 |
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&display=swap');
* {
color: #fff;
font-family: 'Open Sans', sans-serif;
}
body {
margin: 0;
padding: 0;
background-color: #343541;
display: flex;
}
h1{
font-size: 33px;
font-weight: 600;
padding: 200px 0;
}
.side-bar{
background-color: #202123;
width: 244px;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.main{
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
justify-content: space-between;
height: 100vh;
width: 100%;
}
.bottom-section{
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.info{
color: rgba(255, 255, 255, 0.5);
font-size: 11px;
padding: 10px;
}
input{
border: none;
background-color: rgba(255, 255, 255, 0.5);
width: 100%;
font-size: 20px;
padding: 12px 15px;
border-radius: 5px;
box-shadow: rgba(0, 0, 0, 0.5) 0 54px 55px,
rgba(0, 0, 0, 0.5) 0 -12 30px,
rgba(0, 0, 0, 0.5) 0 4px 6px,
rgba(0, 0, 0, 0.5) 0 12px 3px,
rgba(0, 0, 0, 0.5) 0 -3px 5px
}
input:focus{
outline: none;
}
.input-container{
position: relative;
width: 100%;
max-width: 650px;
}
.input-container #submit{
position: absolute;
right: 0;
bottom: 15px;
cursor: pointer;
}
button{
border: solid 0.5px rgba(255, 255, 255, 0.5);
background-color: transparent;
border-radius: 5px;
padding: 10px;
margin: 10px;
}
nav{
border-top: solid 0.5px rgba(255, 255, 255, 0.5);
padding: 10px;
margin: 10px;
}
.history{
padding: 10px;
margin: 10px;
display: flex;
flex-direction: column;
height: 100%;
}
.history p{
cursor: pointer;
} |