-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
44 lines (35 loc) · 921 Bytes
/
style.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
*{
margin:0;
padding:0;
}
body{
/* Setting default text color, background and a font stack */
font-size:16px;
color:#666;
/* A webkit gradient: */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(228,245,252,1)), color-stop(50%,rgba(191,232,249,1)), color-stop(100%,rgba(42,176,237,1)));
background: -webkit-linear-gradient(top, rgba(228,245,252,1) 0%,rgba(191,232,249,1) 50%,rgba(42,176,237,1) 100%);
background: linear-gradient(to bottom, rgba(228,245,252,1) 0%,rgba(191,232,249,1) 50%,rgba(42,176,237,1) 100%);
text-shadow:1px 1px 0 white;
font-family:Arial, Helvetica, sans-serif;
overflow-x:hidden;
width: 300px;
height: 136px;
}
ul {
margin-top: 10px;
}
ul > li {
text-align: center;
padding: 5px;
list-style-type: none;
color: white;
width: 80%;
margin: auto;
}
ul > li:hover {
background: white;
color: black;
cursor: pointer;
border-radius: 5px;
}