-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
67 lines (59 loc) · 1.06 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
63
64
65
66
67
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
}
body {
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.speech-container {
padding: 2rem;
display: flex;
text-align: center;
flex-direction: column;
border-radius: 10px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
}
.speech-container,
textarea {
color: white;
background-color: #e64b00;
}
.speech-container h2 {
font-size: 2rem;
margin-bottom: 1rem;
}
textarea {
resize: none;
border: none;
outline: none;
padding: 2rem 0;
color: white;
text-align: left;
font-size: 1.1rem;
}
textarea::placeholder{
color: #fff;
}
#speech{
width: 10rem;
padding: .8rem;
margin: 0 auto;
cursor: pointer;
color: #e64b00;
font-size: 1.2rem;
border-radius: 15rem;
display: inline-block;
transition: all .3s linear;
border: 2px solid #e64b00;
}
#speech:hover{
color: #fff;
border-color: #fff;
background-color: #e64b00;
}