-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
139 lines (100 loc) · 2.48 KB
/
stylesheet.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
body
{
position: absolute;
background-color: #DDDDEE;
font-family: "Helvetica", Helvetica, sans-serif;
width: 100%;
height: 100%;
margin: 0;
min-width: 840px;
min-height: 442px;
overflow: auto;
}
.title
{
margin-top: 50px;
text-align: center;
font-size: 84px;
font-weight: bold;
color: #555599;
}
.subtitle
{
margin-bottom: 50px;
text-align: center;
font-size: 48px;
font-weight: bold;
color: #AAAACC;
}
.center
{
position: absolute;
width: 840px;
left: calc(50% - 420px);
}
.pageGroup
{
position: relative;
float: top;
width: 800px;
background-color: #90EE90;
margin-bottom: 50px;
padding: 20px;
border-radius:25px;
overflow: hidden;
}
.pageGroupTitle
{
height: 50px;
margin-bottom: 10px;
line-height: 50px;
font-size: 40px;
text-align: center;
color: #30aa30;
}
.outerLink
{
position: relative;
width: 200px;
height: 200px;
float: left;
}
.linkPic
{
display: block;
position: relative;
overflow: hidden;
width: 180px;
height: 180px;
margin-left: 10px;
margin-top: 10px;
border-radius: 10px;
background: no-repeat;
background-color: #ffffff;
}
.linkName
{
position: absolute;
width: 100%;
height: 40px;
top: 180px;
text-align: center;
font-size: 20px;
line-height: 40px;
color: #ffffff;
background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 25%, rgba(0,0,0,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(25%,rgba(0,0,0,0.75)), color-stop(100%,rgba(0,0,0,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.75) 25%,rgba(0,0,0,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.75) 25%,rgba(0,0,0,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.75) 25%,rgba(0,0,0,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.75) 25%,rgba(0,0,0,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
-webkit-transition: all .4s ease;
-moz-transition: all .4s ease;
-ms-transition: all .4s ease;
-o-transition: all .4s ease;
transition: all .4s ease;
}
.linkPic:hover > .linkName {
top: 140px;
}