-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
61 lines (48 loc) · 868 Bytes
/
style.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
body {
margin: 0;
padding: 10px;
font-family: Helvetica;
min-width: 500px;
}
#input-el {
width: 98%;
min-height: 25px;
border-style: solid;
border-color: limegreen;
padding: 10px;
margin: 10px;
margin-bottom: 5px;
font-size: 15px;
box-sizing: border-box;
}
button {
width: 154px;
height: 35px;
background-color: limegreen;
padding: 10px 20px;
margin-left: 10px;
font-family: Helvetica;
color: whitesmoke;
font-size: 15px;
font-weight: bolder;
text-align: center;
border-radius: 5px;
border: 1px solid limegreen;}
button:hover {
background-color: white;
border: 1px solid limegreen;
color: limegreen;
transition-duration: 0.3s;
}
ul {
margin-top: 20px;
list-style: none;
font-size: 15px;
padding-left:10px;
}
li {
margin-top: 5px;
}
li a {
color: limegreen;
}