-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
62 lines (56 loc) · 1.11 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
62
* {
box-sizing: border-box;
margin: 0;
padding: 0;
background: #f3f3f3c0;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.container {
display: grid;
grid-template-columns: 1fr 1fr 150px;
height: 100vh;
align-items: center;
gap: 30px;
padding: 30px;
}
h2 {
text-align: center;
padding: 10px;
background: rgba(104, 22, 180, 0.856);
color: #fff;
}
/* text-area styling */
.text-area {
height: 80%;
padding: 20px;
color: rgba(129, 129, 129, 0.856);
background: #b3afbdc0;
border-radius: 5px;
border: none;
outline: none;
resize: none;
font-size: 19px;
transition: background 0.9s color 0.9s;
}
.text-area:hover,
.text-area:focus {
background: #35353598;
color: #fff;
}
.btn {
padding: 8px;
width: 100%;
font-weight: 600;
margin-bottom: 5px;
border-radius: 6px;
background: rgba(104, 22, 180, 0.856);
border: none;
outline: none;
color: white;
letter-spacing: 1px;
cursor: pointer;
}
.btn:hover {
background: rgba(140, 84, 192, 0.856);
color: white;
}