menu.css
947 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
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
#div_root{
margin:auto;
width:100%;
}
#div_top{
width:100%;
height:80px;
text-align: center;
vertical-align: middle;
}
#div_con1{
width:70%;
height:600px;
float:left;
}
#div_con2{
background-color:beige;
width:29%;
height:600px;
float:left;
text-align : left;
}
#menu{
width:30%;
height:300px;
margin-left: 2%;
margin-top:25px;
float:left;
}
#div_bottom{
width:100%;
height :20px;
clear:both;
}
h1 {
font-size: 2em;
font-weight: normal;
}
h2 {
font-size: 1em;
font-weight: normal;
}
#btn{
border-radius: 5px;
font-size: 30px;
margin-left: auto;
margin-right : auto;
}
#btn_group button{
border: 1px hidden black;
background-color: rgba(0,0,0,0);
color: black;
padding: 50px;
display: table;
margin-left: auto;
margin-right: auto;
margin-top: 10%;
}
#btn_group button:hover{
color:white;
background-color: skyblue;
}