-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (52 loc) · 891 Bytes
/
style.css
File metadata and controls
60 lines (52 loc) · 891 Bytes
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
body {
font-family: "Montserrat", sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 0;
}
.container {
background-color: lightblue;
margin: 10% auto 0 auto;
border: 10px solid rgb(144, 181, 193);
border-radius: 4%;
padding: 20px;
width: fit-content;
box-shadow: 0 0 25px rgba(0, 0, 0, 0.414);
}
h1 {
font-weight: bold;
text-align: center;
font-size: 29px;
}
form {
text-align: left;
margin: 20px;
}
label {
font-weight: bold;
}
.txt-input {
width: 94.5%;
padding: 10px;
margin: 15px 0;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 14px;
font-family: sans-serif;
}
textarea {
resize: none;
}
.btn-submit {
background-color: #007bff;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 3px;
cursor: pointer;
font-size: 18px;
width: 100%;
}
.btn-submit:hover {
background-color: #0056b3;
}