-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.css
78 lines (74 loc) · 1.31 KB
/
index.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
* {
margin: 0;
padding: 0;
}
.logo-bar{
height: 92px;
width: auto;
background-color: #fefbf3;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 13%;
}
.img1{
float: left;
}
.img2{
float: right;
position: absolute;
}
.container{
background-color: white;
}
.box1{
height:fit-content;
width:auto;
background-color: #00167a;
}
.text1{
text-align: center;
color: yellow;
}
.box2{
height:fit-content;
width:auto;
background: rgb(248,255,65);
background: linear-gradient(90deg, rgba(248,255,65,1) 0%, rgba(255,255,255,1) 100%);
}
.text2{
text-align:center;
color: black;
}
.box3{
background-color: #425ac4;
height: fit-content;
width: auto;
}
.text3{
text-align: center;
color: white;
}
p{
font-size: 40px;
color: #001570;
text-align: center;
font-weight: bolder;
}
.button {
background-color: #001994;
border-color: rgb(1, 1, 108);
border-radius: 2px;
border-width: 5px;
color: white;
padding: 20px 34px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 30px;
margin: 7px 4px;
cursor: pointer;
align-items: center;
}