-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
86 lines (76 loc) · 1.52 KB
/
style.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
82
83
84
85
86
*,
html{
margin: 0;
padding: 0;
}
.container {}
.container1 {
background-color: crimson;
width: 100%;
height: 10vh;
display: flex;
justify-content: center;
align-items: center;
}
.ulcontainer1 {
height: 100px;
display: flex;
justify-content: center;
align-items: center;
}
.licontainer1 {
list-style-type: none;
padding: 20px;
margin: 5px;
color: white;
font-size: 20px;
}
.licontainer1:hover {
background-color: black;
transition: .5s ease-in-out;
transition-delay: .3s;
border-radius: 8px;
}
.a-container1 {
color: white;
text-decoration: none;
font-weight: 800;
}
.container2 {
background-color: #f7f7f7;
display: flex;
justify-content: center;
align-items: center;
height: 80vh;
}
.a-content {
background-color: white;
color: black;
text-decoration: none;
font-size: 30px;
width: 720px;
height: 480px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border-radius: 80px;
-webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
}
.img-content {
width: 70%;
height: 70%;
}
.container3 {
height: 10vh;
background-color: crimson;
display: flex;
justify-content: center;
align-items: center;
}
.h1container3 {
font-size: 30px;
color: white;
}