-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
128 lines (110 loc) · 1.77 KB
/
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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/* I always reset all the html elements */
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family: sans-serif;
min-height: 100vh;
color: #555;
background-color: coral;
}
form, .content{
max-width: 400px;
min-height: 500px;
margin: 100px auto;
border: thin solid #e4e4e4;
padding: 40px 30px;
box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
background-color: white;
}
form h2{
margin-bottom: 10px;
}
form h4{
margin-bottom: 40px;
font-weight: normal;
}
form h4 span{
color: coral;
font-weight: bold;
text-decoration: underline;
}
form label{
display: block;
margin-bottom: 10px;
padding-left: 5px;
}
form input, form textarea{
display: block;
width: 100%;
padding: 10px;
margin-bottom: 10px;
font-size: 16px;
border: thin solid #e4e4e4;
margin-bottom: 30px;
}
form select{
display: block;
width: 100%;
margin-bottom: 10px;
padding: 10px;
font-size: 16px;
border: thin solid #e4e4e4;
background-color: white;
color: #555;
}
form input:focus
{
outline: none;
border: thin solid coral;
}
form textarea{
min-height: 150px;
}
form input::placeholder{
font-size: 16px;
}
form button{
background: #32749a;
color: white;
border: none;
padding: 15px;
width: 100%;
font-size: 16px;
margin-top: 20px;
cursor: pointer;
}
form button:active{
background-color: green;
}
.error{
margin-top: 30px;
color: #af0c0c;
}
.success{
margin-top: 30px;
color: green;
}
.content header a{
text-decoration: none;
padding: 6px 20px;
border: thin solid #d4d4d4;
font-size: 14px;
font-weight: normal;
background: #e4e4e4;
color: #555;
}
.content header{
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: thin solid #e4e4e4;
padding-bottom: 30px;
}
.content main{
margin-top: 50px;
}
.content main h3{
}