-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
49 lines (43 loc) · 858 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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
.container{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
background-color: beige;
}
h1{
text-align: center;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
margin: 10px 10px;
text-transform: capitalize;
}
textarea{
height: 120px;
width: 400px;
margin: 15px;
padding: 15px;
border-radius: 5px;
}
textarea:focus{
outline: 1px solid red;
}
button{
width: 400px;
height: 40px;
background-color: black;
color: white;
font-size: 16px;
border-radius: 10px;
cursor: pointer;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#output{
margin: 20px;
color:black
}