-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
60 lines (52 loc) · 929 Bytes
/
styles.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
body {
display: flex;
justify-content: center;
align-items: center;
overflow-y: hidden;
height: 100vh;
background-color: #0D1117;
}
main {
padding: 1.5rem;
border-radius: 8px;
width: fit-content;
background-color: rgb(176, 143, 207);
}
textarea {
border: 1rem solid transparent;
border-radius: 8px;
box-sizing: border-box;
width: 100%;
height: 6rem;
padding: 0;
background-color: rgb(246, 242, 255);
resize: none;
}
button {
margin-top: 0.4rem;
margin-right: 0.2rem;
height: 3rem;
border: none;
border-radius: 8px;
background-color:blueviolet;
font-weight: bolder;
color: white;
}
button:last-child {
margin-right: 0;
}
button:hover {
background-color:rgb(101, 33, 179);
cursor: pointer;
transition-duration: 0.8s;
}
button:active {
box-shadow: 0 0 3pt 2pt rgb(157, 75, 235);
transition-duration: 0.3s;
}
.small {
width: 3rem;
}
.big {
width: 6.4rem;
}