-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathreport-bug.css
96 lines (84 loc) · 1.45 KB
/
report-bug.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
/* Global Styles */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
background-color: #f8f8f8;
}
.container {
max-width: 600px;
margin: 50px auto;
padding: 20px;
background-color: #f2f2f2;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.title {
text-align: center;
font-size: 2rem;
margin-bottom: 20px;
color: #333;
}
h1 {
text-align: center;
}
/* Form Styles */
form {
display: flex;
flex-direction: column;
align-items: flex-start;
}
label {
font-size: 1.2rem;
margin-bottom: 10px;
}
textarea,
select,
input[type="text"] {
padding: 10px;
font-size: 1.2rem;
margin-bottom: 20px;
border: 2px solid #ccc;
border-radius: 5px;
width: 100%;
resize: none;
}
textarea {
height: 200px;
}
select {
width: 30%;
}
input[type="submit"] {
background-color: #4CAF50;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
font-size: 1.2rem;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #3e8e41;
}
/* Hidden Message Styles */
.hidden {
display: none;
font-size: 1.2rem;
margin-top: 20px;
padding: 10px;
border-radius: 5px;
}
.success {
background-color: #d4edda;
color: #155724;
border: 1px solid #c3e6cb;
}
.error {
background-color: #f8d7da;
color: #721c24;
border: 1px solid #f5c6cb;
}