-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
81 lines (68 loc) · 1.03 KB
/
main.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
/* Write your CSS code in this file */
body {
font-size: 1.2em;
background: url('background.jpg') no-repeat center center fixed;
background-size: cover;
}
#hintsGiven{
color: lightgray;
}
#app {
max-width: 80%;
margin: 0 auto;
text-align: center;
border-radius: 10px;
padding: 10px;
background: #602040;
opacity: 0.95;
}
.center{
max-width: 80%;
margin: 20px auto;
border-radius: 10px;
padding: 10px;
background: #eee;
}
button {
background: #493740;
height: 2em;
width: 80%;
margin-bottom: 1.5em;
border-radius: 10px;
color: white;
font-size: 0.8em;
}
input {
border-radius: 10px;
width: 50%;
height: 2em;
text-align: center;
}
#guess-list{
text-align: left;
}
#GH {
width:auto;
max-width:10%;
height:auto;
margin-right:0;
}
#FSA {
width:auto;
max-width:10%;
height:auto;
margin-right: 0px;
margin-left: 0px;
}
#GIT{
width:auto;
max-width:3%;
height:auto;
}
#Footer {
color: black;
width: 100%;
position: fixed;
bottom: 0;
background-color: lightgray;
}