-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
48 lines (48 loc) · 705 Bytes
/
index.css
File metadata and controls
48 lines (48 loc) · 705 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
body {
font-family:arial;
}
input {
padding:3px;
border-radius:6px;
border:1px solid black;
outline:none;
}
input:focus {
border:1px solid #191970;
}
button {
padding:5px;
border-radius:8px;
outline:none;
border:1px solid black;
color:black;
background-color:#F9F6EE;
transition-duration:.5s;
}
button:hover {
background-color:#EDEADE;
}
button:active {
background-color:#EDEADE;
}
input[type=submit] {
padding:5px;
border-radius:8px;
outline:none;
border:1px solid black;
color:black;
background-color:#F9F6EE;
transition-duration:.5s;
}
input[type=submit]:hover {
background-color:#EDEADE;
}
input[type=submit]:active {
background-color:#EDEADE;
}
img {
border-radius:5px;
}
a {
text-decoration:none;
}