-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
executable file
·75 lines (64 loc) · 1.07 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
body {
font-family: arial, helvetica, sans-serif;
font-size: 1em;
line-height: 1.5;
}
#main-container {
border: 5px solid green;
padding: 16px;
text-align: center;
}
.wrapper {
max-width: 1024px;
margin: 0 auto;
}
#alert-message-container {
border: 2px solid green;
margin: 0 auto;
max-width: 520px;
padding: 10px;
margin-bottom: 10px;
height: 25px;
font-weight: bold;
}
#details-container {
border: 2px solid green;
margin: 0 auto;
max-width: 520px;
margin-bottom: 10px;
text-align: left;
padding: 10px;
}
#button-container {
border: 2px solid green;
margin: 0 auto;
max-width: 520px;
padding: 10px;
}
#text-field {
height: 32px;
font-size: 1.5em;
text-align: center;
background-color: #E8E8E8;/* lightgray background */
}
#guess-button, #restart-button {
height: 32px;
font-size: 1.5em;
cursor: pointer;
}
h4 {
display: inline;
}
ul {
display: inline;
padding-left: 2px;
}
.list-style {
display: inline;
list-style: none;
margin-right: 2px;
padding: 2px;
}
#border-style-green {
border: 2px solid green;
}