-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
102 lines (85 loc) · 1.28 KB
/
main.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
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
* {
box-sizing: border-box
}
body {
font-family: 'Poppins', sans-serif;
color: white;
}
.container {
height: 100vh;
padding: 30px;
background: #0B0A07;
}
main {
max-width: 960px;
margin: 0 auto;
padding: 15px;
border: 2px solid #E3D87E;
border-radius: 5px;
background: #748067;
}
p{
max-width: 400px;
margin: 0 auto;
padding-bottom: 10px;
font-weight: 500;
}
h1{
text-align: center;
text-transform: uppercase;
color: #F0EC57;
}
form{
text-align: center;
}
label {
display: block;
padding: 5px 0;
font-weight: 600;
color: #000;
}
textarea {
max-width: 420px;
height: 250px;
padding: 5px;
}
button{
width: 150px;
height: 40px;
padding: 5px;
margin-top: 5px;
}
.hidden {
display: none;
}
.text-report dt:after {
content: ": ";
}
.text-box{
border: none;
outline: none;
}
.btn{
border: 1px solid transparent;
border-radius: 5px;
outline: none;
text-transform: uppercase;
letter-spacing: 1px;
color: white;
font-weight: 600;
background-color: #1fb54e;
}
.btn:hover{
opacity: 0.85;
}
.btn:active{
transform: scale(0.97);
}
.display{
width: 320px;
margin: 15px auto;
padding: 5px 0;
text-align: center;
color: white;
}