Writing.css
896 Bytes
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
.writing{
height: 90%;
width: 90%;
max-width: 1024px;
display:grid;
grid-template-rows: 15% 70% 10% ;
margin: 2% 2%;
background-color: #FDF5E6;
}
.writing :nth-child(1) {
display: flex;
justify-content: center;
align-items: center;
}
.writing :nth-child(2) {
display: flex;
justify-content: center;
align-items:flex-start;
padding-top:3%;
}
.writing :nth-child(1) input{
padding: 2%;
width:95%;
height:87%;
font-size: 30px;
}
.writing :nth-child(2) textarea {
padding: 2%;
width:95%;
height:95%;
resize: none;
font-size: 20px;
}
.writing :nth-child(1) input::placeholder{
font-size:40px;
}
.writing :nth-child(3){
display: flex;
justify-content: end;
align-items: flex-end;
}
.writing :nth-child(3) button {
height: 70%;
width: 15%;
margin: 3%;
max-width: 250px;
}