-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
74 lines (72 loc) · 1.32 KB
/
style.css
File metadata and controls
74 lines (72 loc) · 1.32 KB
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
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.nav {
display: flex;
justify-content: space-around;
align-items: center;
list-style: none;
background-color: wheat;
}
body {
font-family: sans-serif;
color: darkblue;
size: 20;
margin: auto;
line-height-step: 1;
}
h1 {
color: white;
align-items: center;
margin: 50px;
text-align: center;
}
h2 {
color: goldenrod;
padding: 10px;
margin-left: 10px;
}
h3 {
color: brown;
text-align: right;
}
.button {
margin: 1%;
text-align: center;
}
.button1 {
width: 200px;
font-size: 16px;
font-weight: 600;
color: black;
cursor: pointer;
margin: 10px;
height: 45px;
text-align: center;
border: none;
background-size: 300% 100%;
border-radius: 50px;
moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-webkit-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.button1:hover {
background-position: 100% 0;
moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-webkit-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.button1.color {
background-image: linear-gradient(
to right,
#25aae1,
#40e495,
#30dd8a,
#2bb673
);
box-shadow: 0 4px 15px 0 rgba(49, 196, 190, 0.75);
}