-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.css
69 lines (69 loc) · 1.07 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
* {
margin: 0px;
padding: 0px;
transition-duration: 0.5s;
-moz-transition-duration: 0.5s; /* Firefox 4 */
-webkit-transition-duration: 0.5s; /* Safari 和 Chrome */
-o-transition-duration: 0.5s; /* Opera */
font-family: "微软雅黑"
}
a {
text-decoration: none;
}
textarea {
text-transform: uppercase;
}
.steps {
width: 90%;
height: 100%;
font-size: 1em;
position: absolute;
}
.guide {
height: 100%;
width: 10%;
position: fixed;
right: 0px;
}
.guide_step {
font-size: 8em;
height: 25%;
margin: auto;
color: white;
cursor: pointer;
text-align: center;
}
#guide1 {
background-color: #E893AA;
}
#guide2 {
background-color: #FFD2A2;
}
#guide3 {
background-color: #6A94A3;
}
#guide4 {
background-color: #B2E28F;
}
#guide1:hover, #guide2:hover, #guide3:hover, #guide4:hover {
background-color: #FFFFFF;
color: black;
}
.steps p, .steps textarea {
margin-right: 10%;
margin-left: 10%;
}
.button {
font-size: 1em;
margin-top: 2%;
width: 40%;
height: 5%;
}
.text {
font-size: 2em;
width: 80%;
height: 10%;
margin-right: 10%;
margin-bottom: 1%;
margin-left: 10%;
}