-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeveloperlanding.css
More file actions
115 lines (109 loc) · 2.1 KB
/
Copy pathdeveloperlanding.css
File metadata and controls
115 lines (109 loc) · 2.1 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
110
111
112
113
114
115
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,body{
line-height: 1.4;
font-weight: 300;
}
.hero{
/* background-image: url(/images/download\ \(5\).jpeg); */
background-image: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQPPGBDCCEpozMsdOIJ6rwcUein02DpvIZdEw&usqp=CAU);
min-height: 100vh;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.text_container{
color: white;
max-width: 900px;
margin: 0 auto;
padding-top: 60px;
padding-left: 16px;
}
.text_container h2{
color: rgb(204, 25, 25);
}
.lg_text{
font-size: 72px;
font-weight: 400;
color: aqua;
}
.black_box{
background-color: black;
padding: 20px;
}
.black_box h1{
font-weight: 300;
font-size: 72px;
color:white;
text-align: center;
}
.black_box h1 span{
font-weight: 400;
font-size: 96px;
}
.work
{
display: grid;
gap: 20px;
grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
max-width: 1100px;
margin: 50px auto;
}
.grid_item{
display: flex;
justify-content: center;
align-items: center;
}
.card{
max-width: 350px;
height: 450px;
border-radius: 10px;
box-shadow: 3px 5px 5px rgba(1,1,1,0.2);
transition: 0.2s ease-in-out;
}
.card :hover{
transform: scale(1.05);
box-shadow: 3px 5px 5px rgba(1,1,1,0.3);
transition: 0.2s ease-in-out;
}
.cardtextcontainer
{
padding: 20px;
}
.cardtextcontainer h3{
margin-bottom: 10px;
}
.bottom
{
display: flex;
}
.contact{
background-color: green;
min-height: 300px;
padding: 32px;
color: wheat;
}
.about{
background-color: brown;
min-height: 300px;
padding: 32px;
color: wheat;
}
.contact p, .about p{
margin-bottom: 20px;
}
.contact h2, .about h2{
font-size: 58px;
font-weight: 300;
}
footer{
text-align: center;
text-transform: uppercase;
background-color: black;
padding:20px;
color: aliceblue;
font-size: 65px;
}