-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
55 lines (51 loc) · 1006 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
50
51
52
53
54
55
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.all{
width: 100%;
height: 100vh;
background: rgb(255, 255, 255);
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.all textarea{
width: 40%;
outline: none;
resize: none;
font-size: 16px;
font-family: 'Roboto', sans-serif;
color: #333;
background: #fff;
padding: 20px;
box-sizing: border-box;
border-radius: 5px;
overflow: hidden;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
border: 0;
box-shadow: -1px -1px 16px 10px rgba(0,0,0,0.21);
}
.all .btn{
width: 40%;
padding: 12px;
min-width: 300px;
background: #333;
border: none;
border-radius: 5px;
color: #fff;
font-size: 16px;
font-family: 'Roboto', sans-serif;
cursor: pointer;
outline: none;
transition: .3s;
border-top-left-radius: 0;
border-top-right-radius: 0;
box-shadow: 0px 10px 16px 10px rgba(0,0,0,0.21);
}
.oscurecer{
background: rgba(3, 3, 3, 0.632);
}