-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathPage3.css
93 lines (83 loc) · 1.65 KB
/
Page3.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
body{
background-color:#E1F5FE;
}
.xcon{
width:200px;
text-transform: capitalize;
border: 1px solid #999;
height: 25px;
-webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
transition-property:box-shadow;
transition-duration:0.50s;
font-family: Tahoma, Geneva, sans-serif;
color: #EF5C54;
font-size: 20px;
}
.xcon:hover{
outline: none;
border-color: #26C6DA;
box-shadow: 0 0 10px #0D47A1;
font-family: Tahoma, Geneva, sans-serif;
font-size: 20px;
color: #EF5C54;
}
.one{
font-family: Tahoma, Geneva, sans-serif;
font-size:25px;
padding-bottom:5px;
color:#039BE5;
}
.button {
display: inline-block;
border-radius: 4px;
background-color: #f4511e;
border: none;
color: #FFFFFF;
text-align: center;
font-size: 28px;
padding: 20px;
width: 200px;
transition: all 0.5s;
cursor: pointer;
margin: 5px;
}
.button span {
cursor: pointer;
display: inline-block;
position: relative;
transition: 0.5s;
}
.button span:after {
content: '»';
position: absolute;
opacity: 0;
top: 0;
right: -20px;
transition: 0.5s;
}
.button:hover span {
padding-right: 25px;
}
.button:hover span:after {
opacity: 1;
right: 0;
}
#b1{
background-color: #4CAF50; /* Green */
border: none;
color: white;
align:center;
padding: 8px 10px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 17px;
margin-bottom:3px;
margin-right:3px;
margin-left: 613px;
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
cursor: pointer;
}