Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Ryan778
GitHub Repository: Ryan778/Ryan778.github.io
Path: blob/master/badui/cursor/style.css
578 views
1
body {
2
background-color: #999;
3
color: #000;
4
margin-top: 50px;
5
}
6
.content {
7
background-color: #d9d9d9;
8
width:500px;
9
height: 550px;
10
margin: 0 auto;
11
padding-top: 1px;
12
border-radius: 5px;
13
border: 1px solid #404040;
14
color: #222;
15
}
16
.content h2 {
17
text-align: center;
18
color: #000;
19
}
20
.content p {
21
font-size: 18px;
22
}
23
.subcontent {
24
margin-left: 50px;
25
margin-right: 50px;
26
}
27
select {
28
width: 300px;
29
height: 25px;
30
float: right;
31
}
32
.next {
33
background-color: #fff;
34
float: right;
35
width: 80px;
36
height: 25px;
37
text-align: center;
38
display: table;
39
border: 1px solid #777;
40
}
41
.next:hover {
42
cursor: pointer;
43
background-color: #c4c4c4;
44
}
45
.next p {
46
display: table-cell;
47
vertical-align: middle;
48
}
49