-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathstyle.css
More file actions
93 lines (87 loc) · 1.66 KB
/
style.css
File metadata and controls
93 lines (87 loc) · 1.66 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400&display=swap');
* {
box-sizing: border-box;
}
body {
background-color: rgb(161, 100, 223);
font-family: 'Poppins', sans-serif;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
text-align: center;
height: 100vh;
overflow: hidden;
margin: 0;
}
.wrapper{
padding: 20px 0px 20px 0px;
background-color: yellow;
background-position: center;
height: 600px;
background-size: cover;
box-shadow: 2px 2px 17px rgb(18, 19, 18);
/* width:100%; */
}
.container{
display: flex;
justify-content: space-evenly;
align-items: center;
/* height: 300px; */
}
.item{
/* margin-top: 10px; */
display: flex;
}
.item h3{
color:white;
}
.item h3 b{
background-color: rgb(95, 214, 155);
border-radius: 50%;
color:black;
padding:5px 9px;
}
.item nav{
display: flex;
}
.item nav ul{
display: flex;
}
.item nav ul li{
list-style: none;
padding: 0px 16px;
font-size: 24px;
}
.item nav ul li i{
color:white;
}
.item nav ul li a{
color:white;
text-decoration: none;
}
.item nav ul li a:hover{
color:grey;
text-decoration: underline;
text-transform: uppercase;
}
.item nav ul li .active{
color:rgb(93, 226, 175);
}
.btn {
background-color: rebeccapurple;
border-radius: 5px;
border: none;
color: #fff;
margin: 1rem;
padding: 1.5rem 3rem;
font-size: 1.2rem;
font-family: inherit;
cursor: pointer;
}
.btn:hover {
opacity: 0.9;
}
.btn:focus {
outline: none;
}