-
Notifications
You must be signed in to change notification settings - Fork 1
/
GuessStyle.css
76 lines (65 loc) · 1.2 KB
/
GuessStyle.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
body {
font-family: sans-serif;
text-align: center;
background-color: #f1f1f1;
}
#title {
font-size: 2em;
color: #333;
margin-top: 20px;
text-transform: uppercase;
letter-spacing: 2px;
}
hr {
width: 50%;
margin: 20px auto;
border: none;
border-bottom: 2px solid #333;
}
h1 {
font-size: 2em;
color: #333;
margin-top: 20px;
}
#guess {
font-size: 4em;
color: #333;
margin-bottom: 20px;
}
#no {
display: inline-block;
margin-right: 10px;
}
button {
width: 100px;
height: 50px;
font-weight: bold;
font-size: 1em;
padding: 10px 20px;
border: none;
background-color: #333;
color: #fff;
cursor: pointer;
transition: background-color 0.5s;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
button:hover {
background-color: #555;
}
#yes {
display: inline-block;
}
h2 {
font-size: 1.5em;
color: #333;
margin-top: 20px;
}
#curve_chart {
width: 500px;
height: 300px;
margin: 0 auto;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}