-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
54 lines (46 loc) · 949 Bytes
/
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
* {
box-sizing: border-box;
}
body {
background-color: rgb(214, 230, 244);
font-family: Arial;
}
div {
background-color: rgb(16, 117, 45);
display: inline-block;
width: 300px;
height: auto;
position: absolute;
left: 50%;
top:20%;
transform: translate(-50%, 0);
text-align: center;
border-radius: 5px;
border: 2px solid goldenrod;
}
h1 {
color: goldenrod
}
p {
color: white;
font-weight: bold;
}
button {
background-color: transparent;
color: goldenrod;
border: 2px solid goldenrod;
border-radius: 3px;
width: 160px;
margin-bottom: 5px;
font-weight: bold;
padding: 6px;
}
button:active {
transform: scale(0.98);
}
#message-el {
font-style: italic;
}
p {
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}