-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
50 lines (45 loc) · 949 Bytes
/
style.css
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
*{
margin: 0;
padding: 0;
font-family: 'Poppins',sans-serif;
box-sizing: border-box;
}
body {
background: linear-gradient(to bottom, hsl(192, 24%, 23%), hsl(0, 6%, 23%));
color:whitesmoke
}
.container{
width: 100%;
height: 100vh;
padding: 20px;
display: flex;
}
.left, .right{
flex-basis: 50%;
padding: 10px;
}
textarea {
width: 100%;
height: 28%;
background-color: white;
opacity: 0.2; /* Wheat with reduced opacity */
border: none; /* Remove the border */
padding: 10px 20px; /* Add some padding for spacing */
color: black;
font-size: medium;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Add a subtle box shadow */
}
iframe{
width: 100%;
height: 95%;
background-color: white;
opacity: 0.5;
border:none;
padding: 10px ;
outline: 0;
}
label{
display: flex;
align-items: center;
background-color: rgb(7, 17, 26,0.1);
}