This repository was archived by the owner on Mar 9, 2023. It is now read-only.
forked from pushdev-code/javascript-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform-styles.css
More file actions
88 lines (70 loc) · 1.2 KB
/
Copy pathform-styles.css
File metadata and controls
88 lines (70 loc) · 1.2 KB
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
body {
font-weight: bold;
margin: 0;
padding: 0;
text-align: center;
}
.buttons {
border: none;
font-family: 'Trebuchet MS';
font-size: 20px;
height: 60px;
margin: 10% 30px 0 30px;
width: 200px;
}
.form {
padding-bottom: 3%;
}
.field-courses {
display: block;
margin-bottom: 60px;
}
.fieldset-textfields {
display: flex;
}
.fieldset-textfields, .field-courses {
font-family: 'Trebuchet MS';
margin-top: 5%;
padding: 40px;
}
.site-main-title {
font-size: 50px;
}
.label-form {
padding-bottom: 30px;
padding-top: 30px;
}
.paragraph-message-advice {
font-family: 'Trebuchet MS';
}
.reset {
background-color: #F76B62;
}
.reset:hover {
background-color: #F43327;
}
.send {
background-color: #3F9BF7;
color: white;
font-size: 25px;
}
.send:hover {
background-color: lightslategray;
}
/*ERRORS*/
.email-error, .name-error, .phone-error {
border: 2px solid red;
}
.email-error-msg, .name-error-msg, .phone-error-msg {
display: none;
}
.fieldset-courses-legend-error, .parag-error-msg {
color: red;
font-size: 20px;
}
.information-p {
display: none;
}
.parag-error-msg {
font-size: 12px;
}