-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyletrans.css
More file actions
109 lines (92 loc) · 2.05 KB
/
styletrans.css
File metadata and controls
109 lines (92 loc) · 2.05 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: "Poppins", serif;
}
body {
display: flex;
flex-direction: column;
align-items: center;
min-height: 200vh;
background: linear-gradient(to right, red, blue);
background: radial-gradient(circle, red, blue);
}
#guys {
font-size: 3rem;
font-weight: bold;
color: black;
text-align: center;
margin-top: 50px;
margin-bottom: 70px;
}
.coontainer {
width: 700px;
padding: 20px;
background: #e2cee4;
box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.115);
border-radius: 10px;
}
.input_box {
display: flex;
border: 2px solid #000000;
border-radius: 10px;
}
.input_box textarea {
width: 100%;
}
textarea {
border: 0;
outline: none;
padding: 10px;
height: 150px;
background: inherit;
resize: none;
margin: 10px 0px;
}
textarea:nth-child(1) {
border-right: 2px solid #000000;
}
.row {
display: flex;
width: 100%;
border: 1px solid #000000;
border-top: none;
border-radius: 10px;
}
.row .select {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
margin: 5px 20px;
}
.select select {
border: 0;
outline: none;
padding: 3px;
border-radius: 3px;
border: 1px solid #000000;
background: inherit;
width: 100%;
}
button {
border: 0;
outline: none;
width: 100%;
text-align: center;
background: rgb(21, 8, 255);
cursor: pointer;
padding: 12px 0px;
margin-top: 10px;
color: #fff;
border-radius: 5px;
transition: background .3s ease;
}
button:hover {
background: linear-gradient(to right, red, blue);
background: radial-gradient(circle, red, blue);
color: #ffffff;
font-weight: 800;
}