-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
63 lines (51 loc) · 1.03 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
html,
body{
height:100%;
}
#area{
background:#222 url('img/computer.jpg')center center no-repeat;
background-size:cover;
color:white;
height:100%;
text-align: center;
display: flex;
align-items: center;
}
.container{
align-items: center;
margin-left: 350px;
}
.col-sm-8{
font-size: 40px;
text-align: center;
margin-right: 100px;
font-weight: 400;
font-family: cursive;
}
hr{
border-color: blueviolet;
border-width: 1px;
margin-top: 20px;
}
.btn{
background-color: tomato;
border-radius: 10px;
border-color: black;
font-size: 20px;
box-shadow: 10 10 10 #333;
background: linear-gradient(#fc3,#f91);
text-shadow: 0 1px 2px rgba(0,0,0,0.6);
margin-left: 35%;
}
.btn:hover{
position:relative;
background-color: burlywood;
border-radius:20px;
background: linear-gradient(to top,#fc3,#f91);
}
.btn:active{
position:relative;
padding-bottom:13px;
background-color: blue;
border-radius:20px;
}