-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
145 lines (121 loc) · 1.87 KB
/
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
html {
background-color: #0f0f11;
}
body,
button,
html,
input,
select,
textarea {
color: #4d4d4d;
font: 14px "Helvetica Neue", Helvetica, sans-serif;
line-height: 20px;
margin: 0;
}
.deleteCard {
font-weight: 800;
cursor: pointer;
}
.navBar {
background: #19191c;
color: white;
font-family: "Times New Roman", Georgia, Serif;
padding: 10px;
font-size: 50px;
text-align: center;
overflow: hidden;
z-index: 10;
position: fixed;
width: 100%;
}
.navBar img {
width: 90px;
}
.add_list_form {
background: #aba5a5;
border-radius: 3px;
margin: 0 5px;
max-height: 100%;
position: fixed;
width: 222px;
cursor: pointer;
right: 30px;
}
.form-button {
min-height: 19px;
padding: 8px 34px 8px 10px;
font-size: 15px;
line-height: 18px;
font-weight: bold;
}
#container {
padding: 80px 20px;
}
.form_parent {
margin: 5px;
}
#list_container {
display: flex;
margin-top: 45px;
}
.list_parent {
background: #aba5a5;
font-size: 15px;
margin: 20px;
width: 250px;
border-radius: 10px;
}
.top_shelf {
background: white;
display: flex;
padding: 15px;
}
.list_title_name {
text-align: center;
font-weight: 600;
flex: 1;
margin: 0px;
}
.list_cardlist,
.add_cards {
padding: 15px;
}
.add_cards {
text-align: center;
}
.add_cards button {
margin-bottom: 10px;
}
.card_form_parent {
display: flex;
flex-direction: column;
}
.card_form_parent input {
margin-bottom: 10px;
}
.card-list {
padding: 10px 15px;
}
.card-list > div {
padding: 10px;
background: white;
margin-bottom: 12px;
}
.card-entry-main-parent {
display: flex;
}
.card-entry-main-parent > div {
flex: 1;
}
.card-entry-main-parent > div p:first-child {
font-weight: 600;
text-decoration: underline;
}
.card-entry-main-parent button {
height: 28px;
font-size: 15px;
font-weight: 800;
}
.card-entry-main-parent p {
margin: 0;
}