main.css
756 Bytes
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
h1 {
font-size:6em;
margin-top:1em;
margin-bottom:-0.2em;
text-align: center;
}
#content1{
text-align: center;
font-size:0.8em;
}
#content2{
text-align: center;
font-size:2em;
}
#start_btn{
border-radius: 5px;
font-size: 30px;
margin-left: 20px;
margin-right : 20px;
}
#btn_group button{
border: 1px solid skyblue;
background-color: rgba(0,0,0,0);
color: skyblue;
padding: 5px;
display: table;
margin-left: auto;
margin-right: auto;
margin-top: 10%;
padding-left: 100px;
padding-right: 100px;
}
#btn_group button:hover{
color:white;
background-color: skyblue;
}
.centered {
display: table; margin-left: auto;
margin-right: auto;
}