-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
144 lines (124 loc) · 2.2 KB
/
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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
@import url("https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;500;600;700&family=Kanit:wght@300;900&display=swap");
* {
margin: 0px;
padding: 0px;
font-family: "Kanit", sans-serif;
}
.hero {
width: 100%;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
background: linear-gradient(to right bottom, red, blue);
}
div h1 {
color: rgb(255, 255, 255);
font-size: 40px;
font-weight: 1000;
margin: 20px;
border-top: 4px solid rgb(242, 255, 0);
}
span {
color: red;
text-shadow: none;
border-bottom: 4px solid rgb(242, 255, 0);
font-family: "Bai Jamjuree";
}
textarea {
width: 600px;
height: 240px;
padding: 20px;
outline: 0;
color: white;
font-size: 20px;
background: rgba(124, 227, 237, 0.477);
border: none;
border-radius: 20px;
box-shadow: 0px 0px 20px rgb(0, 0, 0, 0.4);
margin-bottom: 20px;
resize: none;
overflow: auto;
}
textarea::-webkit-scrollbar {
display: none;
}
textarea::placeholder {
color: white;
font-size: 25px;
}
.row {
height: 40px;
max-width: 100px;
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
}
button {
font-size: 22px;
border-radius: 20px;
padding: 9px;
background-color: lightgreen;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
outline: 0;
border: 0;
cursor: pointer;
}
button img {
height: 30px;
}
select {
flex: 1;
background-color: lightgreen;
height: 55px;
outline: 0;
border: 0;
padding: 0px 20px;
border: none;
border-radius: 17px;
appearance: none;
background-image: url(images/up-arrow.png);
background-size: 17px;
background-repeat: no-repeat;
background-position-x: calc(100% - 20px);
background-position-y: 20px;
width: 510px;
font-size: medium;
}
@media (max-width: 650px) {
textarea {
width: 300px;
}
select {
width: 249px;
}
div h1 {
font-size: 27px;
}
button {
font-size: 0px;
}
}
@media (max-width: 345px) {
.hero {
width: 100%;
min-height: 100vh;
}
textarea {
width: 261px;
}
select {
width: 207px;
}
div h1 {
font-size: 22px;
}
button {
font-size: 0px;
}
}