-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
73 lines (68 loc) · 1.48 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
71
72
73
#heading{
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
background-color: black;
color: aliceblue;
padding:10px;
text-align: center;
border-radius: 5px;
font-weight: 300;
font-size:xx-large;
letter-spacing: 2px;
word-spacing: 5px;
}
#details{
background-color:cadetblue;
padding: 20px;
line-height: 1.5;
border-radius:25px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-weight:350;
font-size: larger;
}
#box1,#box2, #box3{
border-radius: 5px;
width: 100%;
height:20px;;
border:2px solid
}
button {
width: 9em;
height: 3em;
border-radius: 30em;
font-size: 15px;
font-family: inherit;
border: none;
position: relative;
overflow: hidden;
z-index: 1;
box-shadow: 6px 6px 12px cadetblue,
-6px -6px 12px cadetblue;
}
button::before {
content: '';
width: 0;
height: 3em;
border-radius: 30em;
position: absolute;
top: 0;
left: 0;
background-image: linear-gradient(to right, #0fd850 0%, #f9f047 100%);
transition: .5s ease;
display: block;
z-index: -1;
}
button:hover::before {
width: 9em;
}
.info{
background-color:black;
color: aliceblue;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-weight: 100;
padding: 5px;
width:100%;
}
.row{
font-weight: 100;
text-align: center;
}