-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathten.css
55 lines (55 loc) · 919 Bytes
/
ten.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: 0px;
padding: 0px;
}
.form{
width: 15%;
height: auto;
display: flex;
flex-direction: column;
gap: 30px;
align-items: center;
font-family: Arial, sans-serif;
margin: auto;
padding: 50px;
}
.input{
background-color: #f2f2 ; /*#fcf8e3*/
color: black;
border: none;
outline: none;
padding: 10px;
font-size: 16px;
resize: none;
border-radius: 5px;
width: 300px;
}
.submit{
cursor: pointer;
background-color: purple;
color: white;
font-weight: bold;
font-size: 14px;
border: none;
outline: none;
padding: 10px 20px;
border-radius: 5px;
width: 300px;
}
.box{
color: white;
margin: auto;
margin-top: 20px;
background-color: #aa2be2c9;
border-radius: 5px;
padding: 10px;
width: 120px;
text-align: center;
}
.results{
gap: 10px;
display: grid;
grid-template-columns: auto auto auto;
align-items: center;
justify-content: center;
}