-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
71 lines (61 loc) · 1.4 KB
/
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
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
body {
font: 'Raleway', sans-serif;
color: rgba(0,0,0,.5);
text-align: center;
text-transform: uppercase;
letter-spacing: .5em;
top: 15%;
background: linear-gradient(to right, red , yellow); /* Standard syntax */
}
h1 {
font: 600 3.5em 'Raleway', sans-serif;
color: rgba(0,0,0,.5);
text-align: center;
text-transform: uppercase;
letter-spacing: .5em;
width: 100%;
}
h3 {
font: 900 1em 'Raleway', sans-serif;
color: rgba(0,0,0,.5);
text-align: center;
text-transform: none;
letter-spacing: 0.01em;
}
button {
background: linear-gradient(to right, red , yellow, green, blue, white, black);
box-shadow: 2px 2px 5px black;
color: white;
text-shadow: 2px 2px 2px black;
text-transform: uppercase;
padding: 15px 25px;
border-radius: 50px;
transition: .3s;
font-size: .75em;
}
button:hover {
padding: 25px 35px 25px 35px;
margin-top: -10px;
box-shadow: 3px 3px 10px black;
font-size: .90em;
}
.color1{
transition: .3s;
}
.color1:hover{
margin-top: -10px;
margin-left: -10px;
height: 35px;
width: 70px;
box-shadow: 1px 1px 5px black;
}
.color2{
transition: .3s;
}
.color2:hover{
margin-top: -10px;
margin-right: -10px;
height: 35px;
width: 70px;
box-shadow: 1px 1px 5px black;
}