-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
57 lines (49 loc) · 987 Bytes
/
styles.css
File metadata and controls
57 lines (49 loc) · 987 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: linear-gradient(to left top, rgb(238, 87, 23), rgb(125, 142, 148), yellow);
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
font-family: 'Courier New', Courier, monospace;
color: darkcyan;}
main {
max-width: 50%;
width: 650px;
min-width: 400px;
background: rgba(255,255,255,0.3);
text-align: left;
padding: 2rem 1.5rem;
border-radius: 20px;
box-shadow: 0 4px 10px rgba(0,0,0,.3);
font-family: Verdana, Geneva, Tahoma, sans-serif;
color: #1d7608;
}
h1 {
padding: 1rem 0;
}
label {
font-size: 1.2rem;
padding: 1rem 1rem 1rem 0;
font-weight: 600;
}
input {
padding: 10px;
width: 70%;
background: rgba(255,255,255,0.3);
border-color: rgba(255,255,255,0.5);
font-size: 18px;
border-radius: 10px;
color: darkgreen;
outline: none;
}
p {
padding: 1rem 0;
}
#error {
color: red;
}