-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
84 lines (76 loc) · 1.77 KB
/
styles.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
body {
font: 'Arial', serif;
color: rgba(0,0,0,.5);
text-align: center;
text-transform: uppercase;
letter-spacing: .5em;
top: 15%;
background: linear-gradient(to right, rgb(0, 255, 0) , rgb(0, 255, 255));
}
h1 {
font: 500 3.5em 'Raleway', sans-serif;
color: rgba(0,0,0,.5);
text-align: center;
text-transform: uppercase;
letter-spacing: .5em;
width: 100%;
}
p {
width: 100%;
letter-spacing: 0.1em;
color: rgba(0, 0, 0, 0.699);
text-transform: none;
}
h3 {
font: 'Arial', serif;
width: 100%;
letter-spacing: 0.1em;
color: rgba(0, 0, 0, 0.5);
text-align: center;
text-transform: uppercase;
}
button {
width: 50%;
height: 50px;
font-family: Helvetica;
border-bottom: 5px solid steelblue;
border-top: none;
border-left: none;
border-right: none;
background: linear-gradient(#5FDDFF,#53ADDF);
color: white;
border-radius: 10px;
box-shadow: 0px 2px 10px grey;
transition: 150ms ease;
font-weight: bold;
}
button:active{
border: none;
border-bottom: 2px solid steelblue;
box-shadow: 0px 1px 5px grey;
background: linear-gradient(#53AFFF,#5FCDFF);
color: #FFF;
}
.btn-3d-sub {
width: 20%;
height: 30px;
font-family: Helvetica;
border-bottom: 5px solid #173814;
border-top: none;
border-left: none;
border-right: none;
background: linear-gradient(#469e3f,#255b20);
color: white;
border-radius: 10px;
box-shadow: 0px 2px 10px grey;
transition: 150ms ease;
text-align: center;
font-weight: bold;
}
.btn-3d-sub:active {
border: none;
border-bottom: 2px solid steelblue;
box-shadow: 0px 1px 5px grey;
background: linear-gradient(#255b20,#469e3f);
color: #FFF;
}