-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
125 lines (106 loc) · 1.75 KB
/
Copy pathstyles.css
File metadata and controls
125 lines (106 loc) · 1.75 KB
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
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
}
.container {
padding: 50px;
background-color: rgb(62, 2, 2);
}
.navbar {
display: flex;
flex-wrap: wrap;
padding: 20px;
background-color: rgba(230, 208, 199, 0.775);
}
.navbar-shape {
text-align: center;
width: calc(100% / 3);
display: inline-block;
}
.navbar-saveload {
text-align: center;
width: calc(100% / 3);
display: inline-block;
}
.navbar-help {
text-align: center;
width: calc(100% / 3);
display: inline-block;
}
.center {
text-align: center;
margin-top: 50px;
}
table,
th,
td {
border: 0px solid black;
}
th {
background-color: rgb(213, 154, 149);
}
td {
background-color: rgb(253, 214, 211);
}
.master-container {
padding: 50px;
display: flex;
}
.divider {
flex: 1;
text-align: center;
margin: 20px;
}
.help {
display: block;
}
.btn {
background-color: rgb(235, 195, 183);
border-radius: 20px;
transition: ease-in-out 0.3s;
color: black;
margin: 5px;
padding: 5px;
}
.btn:hover {
background-color: rgb(172, 120, 110);
cursor: pointer;
}
.modal {
display: none;
position: absolute;
z-index: 1;
padding-top: 100px;
padding-bottom: 100px;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
}
.help-content {
background-color: #fefefe;
margin: auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
overflow-y: scroll;
}
.close {
color: #aaaaaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
.form {
margin: 20px;
padding: 20px;
}