Skip to content

Commit

Permalink
added grey/white theme
Browse files Browse the repository at this point in the history
  • Loading branch information
prathamreet committed Jun 29, 2024
1 parent e5a5610 commit 3f773f4
Showing 1 changed file with 65 additions and 9 deletions.
74 changes: 65 additions & 9 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

body {
/* height: 1vh; */
height: 50em;
/* height: 50em; */
/* background-image: url("./media/background/photo-1554177255-61502b352de3.avif"); */
background-repeat: no-repeat;
background-size: contain;
Expand Down Expand Up @@ -38,13 +38,66 @@ textarea {
text-align: center;

background-color: rgb(245 245 245);

/* background: rgba(255, 255, 255, 0.25);
-webkit-backdrop-filter: blur(8px);
backdrop-filter: blur(8px); */

}


.copyit {
/* background-color: antiquewhite; */
/* height: 30em; */
/* margin: 1.3em 0.8em; */
/* padding: 0.1em 0.2em; */
border-radius: 0.8em;
display: flex;
justify-content: space-evenly;
align-items: center;
text-align: center;
}

.copy {
display: flex;
flex-direction: column;
justify-content: space-between;
width: 100%;
margin: 1em;
padding: 1em;
}

.code-container {
position: relative;
background-color: #f4f4f4;
border: 1px solid #ddd;
/* padding: 15px; */
/* margin-bottom: 10px; */
padding: 1em;
}

pre {
margin: 0;
}

#code-snippet{
display: flex;
text-align: left;
overflow: auto;
width: 100%;
}
.copy-button {
position: absolute;
top: 10px;
right: 10px;
padding: 5px 10px;
background-color: #007bff;
color: white;
border: none;
cursor: pointer;
border-radius: 5px;
}

.textareaMain {
/* background-color: aliceblue; */
/* width: 71em; */
Expand Down Expand Up @@ -79,7 +132,7 @@ textarea {

#followers-text {
height: 100%;
width: 100%;
/* width: 100%; */
/* background: rgba(255, 255, 255, 0.25);
-webkit-backdrop-filter: blur(8px);
backdrop-filter: blur(8px); */
Expand All @@ -90,7 +143,7 @@ textarea {

#followings-text {
height: 100%;
width: 100%;
/* width: 100%; */
/* background: rgba(255, 255, 255, 0.25);
-webkit-backdrop-filter: blur(8px);
backdrop-filter: blur(8px); */
Expand Down Expand Up @@ -122,7 +175,7 @@ textarea {
text-decoration: none;
width: 30em;
height: 100%;

border-top: 0px;
border-left: 0px;
border-right: 0px;
Expand All @@ -141,21 +194,24 @@ textarea {
transition: all 0.3s ease-in-out;
}

.btn:hover{
.btn:hover {
color: rgb(255, 31, 31);
border-bottom: 5px solid rgb(255, 31, 31);
}

#result{
#result {
height: auto;
/* background-color: orange; */
margin: 3em;
/* padding: 1em; */
padding: 2em;
border-radius: 0.8em;

background-color: rgb(245 245 245);

/* background: rgba(255, 255, 255, 0.25);
-webkit-backdrop-filter: blur(8px);
backdrop-filter: blur(8px); */

word-spacing: 3em;
line-height: 3em;
}

0 comments on commit 3f773f4

Please sign in to comment.