-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
54 lines (46 loc) · 718 Bytes
/
styles.css
File metadata and controls
54 lines (46 loc) · 718 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
/* Styles go here */
form {
border: 3px solid #f1f1f1;
}
h1 {
text-align: center;
background-color: blue;
color: white;
padding: 14px 20px;
margin: 8px 0 30px 0;
}
li {
text-align: left;
background-color: white;
border: 1px solid grey;
color: Blue;
padding: 14px 20px;
margin-top: 10px;
cursor: pointer;
}
.back {
width: 100px;
}
input[type=text], input[type=password] {
width: 100%;
padding: 12px 20px;
margin: 15px 0;
display: inline-block;
border: 1px solid #ccc;
box-sizing: border-box;
}
button {
background-color: blue;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
cursor: pointer;
width: 100%;
}
button:hover {
opacity: 0.8;
}
.container {
padding: 16px;
}