-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (58 loc) · 1013 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
56
57
58
59
60
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
.container{
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background-color: #6587ace1;
}
textarea{
width: 80%;
height: 200px;
margin: 20px 0;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
outline: none;
}
.row{
width: 100%;
display: flex;
justify-content: center;
align-items: center;
margin-top: 20px;
}
select{
width: 50%;
height: 40px;
border: 1px solid #ccc;
border-radius: 5px;
outline: none;
padding: 5px;
font-size: 16px;
background-color: #f2f2f2;
cursor: pointer;
}
#select{
padding: 10px;
}
button{
background-color: #007bff;
color: #fff;
border: none;
padding: 5px 18px;
margin: 5px;
cursor: pointer;
border-radius: 5px;
height: 40px;
}
button img{
width: 20px;
}