-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
59 lines (51 loc) · 851 Bytes
/
styles.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
body {
font-family: Arial, sans-serif;
margin: 20px;
max-width: 800px;
margin: auto;
}
h1 {
color: #333;
}
textarea {
width: 100%;
height: 150px;
margin-bottom: 15px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 14px;
}
label {
font-weight: bold;
margin-right: 10px;
}
select, input {
padding: 10px;
margin-bottom: 20px;
width: 100%;
max-width: 400px;
display: block;
}
button {
padding: 10px 20px;
margin-top: 10px;
background-color: #007BFF;
color: white;
border: none;
cursor: pointer;
border-radius: 5px;
}
button:hover {
background-color: #0056b3;
}
#result {
margin-top: 20px;
}
img {
margin-top: 20px;
max-width: 100%;
height: auto;
border: 1px solid #ddd;
border-radius: 5px;
}