-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsecond.css
81 lines (65 loc) · 1.29 KB
/
second.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
74
75
76
77
78
79
80
81
html,
body {
background: url(black.jpg) no-repeat center center fixed;
background-size: cover;
height: 100%;
width: 100%;
font-family: 'Montserrat', sans-serif;
}
h1{
box-decoration-break: clone;
text-align: center;
color: white;
font-family: 'Montserrat', sans-serif;
font-size: 3em;
}
h2{
color: white;
text-align: center;
font-family:'Montserrat',sans-serif;
margin: 150px 150px 20px 20px;
}
.h2wala{
text-align: center;
}
.boxmodel{
border: 2px outset wheat;
margin: 100px 20px;
padding: 100px 100px;
box-shadow: 4px 4px 5px #999999;
}
.container{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
img{
width: 300px;
height: 200px;
margin:10px;
transition: all 1s;
}
img:hover{
transform: scale(1.2);
}
.btn {
font-weight: 700;
text-transform: uppercase;
border-radius: 300px;
text-align: center;
}
.btn-primary {
background-color: #F05F44;
border-color: #F05F44;
text-align: center;
}
.btn-primary:hover {
background-color: #ee4b08;
border-color: #ee4b08;
border-width: 4px;
cursor: pointer;
}
.btn-xl {
padding: 1rem 2rem;
text-align: center;
}