-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
70 lines (66 loc) · 997 Bytes
/
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
*{
margin: 0;
padding: 0;
}
body
{
background-color: rgb(0, 0, 33);
color: white;
}
nav {
display: flex;
justify-content: space-around;
align-items: center;
height: 80px;
background: rgb(18, 18, 62);
}
nav ul {
display: flex;
justify-Content: Center;
}
nav ul li {
list-style: none;
margin: 0 23px;
}
nav ul li a {
text-decoration: none;
color:white;
}
nav ul li a:hover {
color:rgb(153, 153, 226);
}
.left{
font-size: 1.5rem;
}
.firstSection{
display: flex;
justify-content: space-around;
margin: 100px 0;
}
.firstSection >div{
width: 40%;
}
.leftSection{
font-size: 3rem;
}
.leftSection .buttons{
padding: 40px;
}
.leftSection .btn{
padding: 12px;
background: #1e2167;
color: white;
border: 2px solid white;
border-radius: 6px;
font-size: 20px;
cursor: pointer;
}
.rightSection img{
width: 100%;
}
.purple{
color:blueviolet;
}
#element{
color:blueviolet;
}