-
Notifications
You must be signed in to change notification settings - Fork 0
/
Style.css
76 lines (66 loc) · 1.18 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
body{
margin: 0;
padding: 0;
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
nav{
display:flex;
justify-content: center;
align-items: center;
height:12vh;
width:100%;
}
.nav-items ul{
display:flex;
}
.nav-items li{
list-style: none;
display: flex;
justify-content: space-between;
padding: 0px 25px;
align-items: center;
}
a{
text-decoration: none;
color:black;
font-weight: 600;
}
hr{
width:50%;
height:3px;
background-color: black;
}
.container1{
position: relative;
}
.container{
margin: 30px;
padding: 100px;
border: 2px solid orchid;
border-radius: 5px;
}
h1{
color:rgba(65, 105, 225, 0.747);
}
#btn1,#btn2,#btn3{
color:white;
border-radius: 3px;
font-weight: 600;
background-color: rgb(51, 45, 37);
border:none;
padding: 10px;
margin: 5px;
}
.footer{
display:flex;
justify-content: space-between;
padding:20px
}
.container-link{
display:flex;
width:400px;
justify-content: space-between;
}
.img{
padding:30px;
}