blob: 37922329cc76b75fd72181124b5efc833bf417f3 (
plain)
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
|
body {
font-family: arial, sans-serif;
font-size: 16px;
}
a {
cursor: pointer;
}
button {
box-sizing: border-box;
font-size: 12px;
padding: 6px 12px;
border-radius: 3px;
border: solid 1px #0096d6;
background: linear-gradient(#0096d6, #0081b8);
color: #fff;
}
button:hover,
button:focus,
button:active {
background: #0081b8;
border: solid 1px #0081b8;
}
section {
position: relative;
width: 100%;
}
article {
position: relative;
margin: 0 auto;
float: left;
}
|