-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
80 lines (77 loc) · 1.43 KB
/
styles.css
File metadata and controls
80 lines (77 loc) · 1.43 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
*{
margin: 1;
padding: 0;
background-image: linear-gradient(to right,yellow,lightblue)
}
h1, h2{
text-align: center;
color: green;
}
h4{
text-align: center;
color: red;
}
h5{
text-align: center;
}
img{
height: 449px;
width: 395px;
border: 20px;
border-radius: 20px;
}
.responsive {
width: 100%;
height: auto;
}
ul{
padding-left: 40px;
padding-top: 5px;
}
form {
/* Center the form on the page */
margin: 0 auto;
width: 350px;
/* Form outline */
padding: 1em;
border: 1px solid #CCC;
border-radius: 1em;
}
form li + li {
margin-top: 1em;
}
label {
/* Uniform size & alignment */
display: inline-block;
width: 90px;
}
input{
/* To make sure that all text fields have the same font settings
By default, textareas have a monospace font */
font: 1em sans-serif;
/* Uniform text field size */
width: 300px;
box-sizing: border-box;
/* Match form field borders */
border: 1px solid #999;
border-radius: 9px;
padding-left:5px;
}
input:focus{
/* Additional highlight for focused elements */
border-color: #000;
}
button {
/* Align buttons with the text fields */
padding-left: 9px; /* same size as the label elements */
margin-top: 12px;
margin-left: 230px;
border-radius: 10px;
width: 95px;
font-family:monospace;
font-size: 30px;
color: red;
}
blockquote{
text-align: center;
}