-
Notifications
You must be signed in to change notification settings - Fork 0
/
project3.css
53 lines (48 loc) · 896 Bytes
/
project3.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
body{
background:black;
color:red;
}
#cls{
width:100%;
height:10%;
display:grid;
grid-template-columns: repeat(3,1fr);
position: fixed;
background-color: transparent;
box-sizing: border-box;
}
.container::before{
content: "";
background-image: url(net.png);
position: absolute;
height: 100%;
width: 100%;
background-size:cover;
opacity:0.3;
}
#text{
color:white;
text-align: center;
padding-top:15%;
}
#second{
padding-top: 20%;
color:white;
display:grid;
grid-template-columns: repeat(2,1fr);
padding-bottom:15%;
}
#third{
padding-top:15%;
color:red;
text-align: center;
}
.third-one{
padding-bottom:15%;
}
.final{
color:white;
font-size: 20px;
display:grid;
grid-template-columns: repeat(2,1fr);
}