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
|
display: none;
position: fixed;
top: 33%;
left: calc(50% - 325px);
}
#message {
display: inline-block;
padding: 1px 10px;
width: 600px;
background-color: hsl(0, 50%, 50%);
color: hsl(0, 50%, 98%);
border-style: solid;
border-width: 2px 0 2px 2px;
border-color: hsl(0, 50%, 40%);
border-radius: 3px 0 0 3px;
}
#message_close_button {
display: inline-block;
padding: 1px 5px;
background-color: hsl(0, 50%, 40%);
color: hsl(0, 90%, 90%);
border-style: solid;
border-width: 2px 2px 2px 0;
border-color: hsl(0, 50%, 30%);
border-radius: 0 3px 3px 0;
cursor: pointer;
}
h1 {
margin: 5px 0 5px 0;
color: hsl(210, 50%, 50%);
|
|
|
|
|
|
|
|
|
|
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
|
display: none;
position: fixed;
top: 33%;
left: calc(50% - 325px);
}
#message {
display: inline-block;
padding: 5px 20px;
width: 600px;
background-color: hsl(0, 50%, 50%);
color: hsl(0, 50%, 98%);
border-style: solid;
border-width: 3px 0 3px 3px;
border-color: hsla(0, 50%, 40%, .5);
border-radius: 5px 0 0 5px;
}
#message_close_button {
display: inline-block;
padding: 5px 10px;
background-color: hsl(0, 50%, 40%);
color: hsl(0, 90%, 90%);
border-style: solid;
border-width: 3px 3px 3px 0;
border-color: hsla(0, 50%, 30%, .5);
border-radius: 0 5px 5px 0;
cursor: pointer;
}
h1 {
margin: 5px 0 5px 0;
color: hsl(210, 50%, 50%);
|