-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
109 lines (98 loc) · 2.07 KB
/
style.css
File metadata and controls
109 lines (98 loc) · 2.07 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
@import url('https://fonts.googleapis.com/css2?family=Aleo:wght@800&display=swap');
body
{
background-image: url(https://images.pexels.com/photos/2757549/pexels-photo-2757549.jpeg?cs=srgb&dl=pexels-elias-tigiser-2757549.jpg&fm=jpg);
background-color: rgb(135, 106, 106);
background-blend-mode: multiply;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
background-attachment: local;
/* position: relative; */
}
*
{
margin: 0; padding: 0;
text-decoration: none;
transition: .2s linear;
}
.container
{ padding: 15px ;
/* padding-top: 100px; */
padding-bottom: 70px;
margin-top: 15px;
display: grid;
grid-template-columns: repeat(auto-fit,minmax(455px, 1fr));
gap: 50px;
}
header
{
width: 100%;
font-family: Aleo;
font-size: 53px;
color: rgb(255, 255, 255);
padding-top: 10px ;
position: relative;
/* position: fixed; */
text-decoration: underline;
z-index: 1;
}
footer
{
color: white;
text-align: center;
font-size: 23px;
padding: 0px 10px 15px;
display: flex;
flex-direction: row;
justify-content: center;
}
footer .developed{
padding:0 50px;
}
.container .box
{
color: white;
box-shadow: 5px 5px 30px rgba(0,0,0,.2);
border-radius: 20px;
/* text-align: center; */
padding-top: 25px;
padding-bottom: 20px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.container .box h2
{
font-size: 1.5em;
font-family:Aleo;
line-height: 2;
}
.container .box img
{
height: 70%;
width: 80%;
border-radius: 20px;
}
.container .box .btn
{
margin-top: 10px;
display: inline-block;
background: #1ac330;
color: white;
font-size: 19px;
border-radius: 8px;
padding: 6px 10px;
font-family: 'Times New Roman', Times, serif;
}
.container .box .btn:hover
{
letter-spacing: 0.4px;
transform: scale(1.03);
}
.container .box:hover
{
box-shadow: 0 10px 15px rgba(0,0,0,.4);
transform: scale(1.02);
}