Last change
on this file since 743de55 was 743de55, checked in by macagaso <gasoskamarija@…>, 6 weeks ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
1015 bytes
|
Rev | Line | |
---|
[743de55] | 1 | :root {
|
---|
| 2 | --font-family: cursive;
|
---|
| 3 | }
|
---|
| 4 | body{
|
---|
| 5 | font-family: var(--font-family);
|
---|
| 6 | }
|
---|
| 7 | #outer-frame{
|
---|
| 8 | background-color: #f3f8fe;
|
---|
| 9 | width: 100%;
|
---|
| 10 | height: 100vh;
|
---|
| 11 | }
|
---|
| 12 | #header{
|
---|
| 13 | display: flex;
|
---|
| 14 | justify-content: space-between;
|
---|
| 15 | }
|
---|
| 16 | #menu{
|
---|
| 17 | display: flex;
|
---|
| 18 | }
|
---|
| 19 | #menu *{
|
---|
| 20 | padding: 8px;
|
---|
| 21 | }
|
---|
| 22 | table td,
|
---|
| 23 | table th {
|
---|
| 24 | padding: 10px;
|
---|
| 25 | }
|
---|
| 26 | table{
|
---|
| 27 | /*margin: 0 auto;*/
|
---|
| 28 | width: 920px;
|
---|
| 29 | }
|
---|
| 30 |
|
---|
| 31 | #popup {
|
---|
| 32 | position: fixed;
|
---|
| 33 | top: 0;
|
---|
| 34 | left: 0;
|
---|
| 35 | width: 100%;
|
---|
| 36 | height: 100%;
|
---|
| 37 | background-color: rgba(0, 0, 0, 0.5);
|
---|
| 38 | display: flex;
|
---|
| 39 | justify-content: center;
|
---|
| 40 | align-items: center;
|
---|
| 41 | z-index: 1000;
|
---|
| 42 | }
|
---|
| 43 |
|
---|
| 44 | #dialogPopUp {
|
---|
| 45 | background-color: #fff;
|
---|
| 46 | padding: 20px;
|
---|
| 47 | border-radius: 8px;
|
---|
| 48 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
---|
| 49 | width: 300px;
|
---|
| 50 | text-align: center;
|
---|
| 51 | }
|
---|
| 52 |
|
---|
| 53 | .btn {
|
---|
| 54 | padding: 10px 15px;
|
---|
| 55 | border: none;
|
---|
| 56 | border-radius: 5px;
|
---|
| 57 | cursor: pointer;
|
---|
| 58 | }
|
---|
| 59 |
|
---|
| 60 | .btn-danger {
|
---|
| 61 | background-color: #dc3545;
|
---|
| 62 | color: #fff;
|
---|
| 63 | }
|
---|
| 64 |
|
---|
| 65 | .btn-secondary {
|
---|
| 66 | background-color: #6c757d;
|
---|
| 67 | color: #fff;
|
---|
| 68 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.