-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (42 loc) · 1.02 KB
/
style.css
File metadata and controls
45 lines (42 loc) · 1.02 KB
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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');
body{
margin: 0;
background: #C9D6FF; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #E2E2E2, #C9D6FF); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #E2E2E2, #C9D6FF); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
font-family: 'Poppins', sans-serif;
}
#textarea{
width: 98%;
/* background: gray; */
color: black;
font-size: 1.5em;
}
/* ::placeholder{
color: white;
cursor: white;
} */
h1{
text-align: center;
}
#outputArea{
width: 98%;
height: 25vh;
border: 2px solid black;
}
button{
background:black;
color: white;
border: 2px solid white;
border-radius: 5px;
height: 50%;
font-size: 1em;
}
button:hover{
background: white;
color: black;
border: 2px solid black;
border-radius: 5px;
font-size: 1.5em;
cursor: pointer;
}