-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
111 lines (95 loc) · 1.78 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
canvas {
background-color: #fff;
border: 1.5px solid #000;
}
body h1 {
background-color: #d12929;
color: #fff;
padding: 15px 500px
}
body {
background-color: #f4f4f4;
font-family: Tahoma, Geneva, sans-serif;
}
.canvButtons {
background-color: #4c0920;
color: #fff;
border: 2px #000;
font-family: Tahoma, Geneva, sans-serif;
}
.modalButton {
background-color:#f48f42;
color: #fff;
border: 2px #000;
font-family: Tahoma, Geneva, sans-serif;
}
.modalButton:hover {
background-color:#b75a14
}
.canvButtons:hover {
background-color: #373831;
}
.canv {
font-family: Tahoma, Geneva, sans-serif;
font-size: 10pt;
}
.modal {
display:block;
position: absolute;
z-index: 1;
left:0;
top:0;
margin-left: 0px;
margin-top: -250px;
height: 200%;
width: 100%;
overflow: auto;
background-color: rgba(0,0,0,0.5);
}
.modalError {
display:none;
position:fixed;
z-index: 1;
left:0;
top:0;
height: 100%;
width: 100%;
overflow: hidden;
background-color: rgba(0,0,0,0.5);
}
.modalContent {
background-color: #f4f4f4;
margin: 20% auto;
width:40%;
box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.17), 0 7px 20px 0 rgba(0, 0, 0, 0.17);
}
.modalTextContent {
background-color: #f4f4f4;
margin: 20% auto;
width:25%;
box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.17), 0 7px 20px 0 rgba(0, 0, 0, 0.17);
}
.closeModalBtn {
color: #fff;
float: right;
font-size:30px;
}
.closeModalBtn:hover, .closeModalBtn:focus {
color: #000;
text-decoration:none;
cursor:pointer;
}
.modalHeader h2 {
margin:0;
}
.modalHeader {
background: #5e90e0;
padding:15px;
color:white;
}
.modalBody {
padding:10px 20px;
}
.lb {
font-size:12px;
}