-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (46 loc) · 824 Bytes
/
style.css
File metadata and controls
55 lines (46 loc) · 824 Bytes
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
html, body {
margin: 0;
font-family: 'Courier New', Courier, monospace;
text-align: center;
}
body {
background-image: linear-gradient(to right, rgba(255,0,0,0), rgb(62, 245, 209));
}
h1{
padding-top: 50px;
}
#open-modal, #close-modal {
background-color:blueviolet;
color: white;
border: none;
border-radius: 2px;
padding: 15px 32px;
font-size: 20px;
cursor: pointer;
}
#open-modal:hover {
background: black;
border: solid 1px blueviolet;
}
#modal {
background-color: white;
width: 50%;
max-width: 600px;
margin: 0 auto;
padding: 20px;
height: 200px;
position: relative;
top: 30%;
opacity: 1;
}
#overlay {
display: none;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background-color: rgba(0, 0, 0, 0.6);
}