-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmaincss.css
More file actions
84 lines (82 loc) · 1.54 KB
/
Copy pathmaincss.css
File metadata and controls
84 lines (82 loc) · 1.54 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
75
76
77
78
79
80
81
82
83
84
body{
font-family: 'Lobster', cursive;
background-color: #262626;
}
section{
background:#666;
position:absolute;
color:#fff;
top:40%;
left:25%;
padding:15px;
-ms-transform: translateX(-50%) translateY(-50%);
-webkit-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);
border-radius: 25px;
display: flex;
justify-content: center;
}
h1{
font-size:60px;
}
.button1{
margin: 0 auto;
width: 500px;
height:110%;
}
.button2{
margin: 0 auto;
width: 500px;
height:110%;
}
button {
position: relative;
vertical-align: top;
width: 100%;
height: 60px;
padding: 0;
font-size: 22px;
color: white;
text-align: center;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
background: #f39c12;
border: 0;
border-bottom: 2px solid #262626;
cursor: pointer;
-webkit-box-shadow: inset 0 -2px #e8930c;
box-shadow: inset 0 -2px #e8930c;
font-family: 'Lobster', cursive;
}
button:active {
top: 1px;
outline: none;
-webkit-box-shadow: none;
box-shadow: none;
font-family: 'Lobster', cursive;
}
footer{
position: fixed;
bottom: 0;
width: 100%;
margin-top: 100px;
left: 0px;
background: orange;
padding-left: 30px;
}
.instbox{
color: white;
position: absolute;
top: 0;
left: 50%;
background: #f39c12;
padding-left: 30px;
padding-right: 30px;
width: 500px;
height: 35%;
text-align: center;
border-radius:0px 0px 10px 10px;
font-size:14px;
}
.instbox p{
font-size: 16px;
}