-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
44 lines (44 loc) · 852 Bytes
/
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
body {
background-color:darkgray;
}
.button {
background-color: black;
color: white;
border-radius: 10px;
padding: 10px 20px;
transition: background-color 0.3s ease;
}
.button:hover {
background-color: #433737;
}
.Frame {
margin: 100px;
padding: 100px;
text-align: center;
height:1050px;
width:1000px;
display: inline-block;
padding: 40px;
border-width: 50px;
border-style: solid;
border-color: #2F2D2D #434040 #4F4C4C #434040;
background: #f5f5f5;
box-shadow: inset 0 2px 5px rgba(0,0,0,.6),0 5px 2px rgba(0,0,0,.1), 0 10px 20px rgba(0,0,0,.8);
position: center;
overflow: hidden;
}
.left {
text-align: left;
}
.right {
text-align: right;
}
.center {
text-align: center;
}
.link {
position: fixed;
text-align: center;
bottom: 30px;
width: 100%;
}