-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.css
85 lines (76 loc) · 1.11 KB
/
index.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
font-family: Arial, Helvetica, sans-serif;
}
.wrapper {
display: flex;
flex-direction: column;
width: 100vw;
min-width: 400px;
padding: 10px;
}
.container {
display: flex;
flex-direction: column;
width: 100vw;
min-width: 400px;
padding: 10px;
}
input[type=text] {
margin: 8px;
padding: 10px;
height: 100px;
border: 3px solid #173078;
}
button {
background-color: #55bfa8;
border: 1px solid #55bfa8;
padding: 10px 20px;
margin-top: 10px;
color: white;
font-weight: 900;
align-self: flex-start;
}
#clear-btn {
background-color: white;
color: #55bfa8;
margin-bottom: 10px;
}
ul {
list-style: none;
margin-left: 20px;
margin-top: 10px;
}
li {
padding: 3px;
color: #55bfa8;
font-weight: 700;
}
a {
color:#173078;
font-weight: 700;
text-decoration: none;
}
label {
color:#55bfa8;
font-weight: 700;
font-size: 16px;
padding: 5px;
}
img {
width: 30px;
height: 30px;
}
span {
font-size: 18px;
color:#173078;
font-weight: 700;
text-decoration: none;
}
span a {
text-decoration: none;
}