-
Notifications
You must be signed in to change notification settings - Fork 1
/
edit.css
65 lines (65 loc) · 1.13 KB
/
edit.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
body {
font-family: "Open Sans", sans-serif;
font-size: 14px;
margin: 0;
padding: 0;
width: 400px;
}
.wrapper {
padding: 10px 15px;
background-color: black;
}
.top_wrapper {
padding-top: 5px;
display: flex;
justify-content: space-around;
align-items: center;
background-color: #404040;
}
.logo {
width: 40px;
height: 40px;
}
.title_wrapper {
text-align: center;
}
.title {
font-family: "Menlo", monospace;
font-size: x-large;
font-weight: 700;
margin: 0;
color: white;
}
.sub_title {
color: #bfbfbf;
}
.middle_wrapper {
color: white;
font-size: medium;
font-weight: bold;
padding: 10px 0px;
display: flex;
justify-content: space-between;
}
.edit_field_wrapper {
display: flex;
justify-content: space-around;
color: red;
padding-bottom: 10px;
}
.edit_field {
width: 300px;
background-color: #e6e6e6;
height: 20px;
border-radius: 5px;
text-align: center;
}
.footer_wrapper {
display: flex;
justify-content: space-evenly;
}
.footer_btn {
color: white;
text-decoration: none;
cursor: pointer;
}