-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
99 lines (82 loc) · 1.43 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
87
88
89
90
91
92
93
94
95
96
97
98
99
* {
text-decoration: none;
}
.navbar {
font-family: calibri;
padding-right: 15px;
padding-left: 15px;
}
body {
background-color: aliceblue;
height: fit-content;
}
.navdiv {
display: flex;
align-items: center;
justify-content: space-around;
align-items: center;
}
.logo img{
height: 90px;
}
li {
list-style: none;
display: inline-block;
}
li a {
color: black;
font-size: 25px;
font-weight: bold;
margin-right: 30px;
}
li a:hover {
color: aqua;
transition: .3s;
}
button {
background-color: lightgoldenrodyellow;
margin-left: 10px;
border-radius: 10px;
padding: 10px;
width: 90px;
}
button a {
color: black;
font-weight: bold;
font-size: 20px;
}
button:hover {
background-color: lightgray;
}
.container {
display: flex;
justify-content: center;
align-items: center;
}
.left, .right {
flex-basis: 50%;
}
.left h1{
font-size: 50px;
margin-bottom: 20px;
}
.left {
max-width: 450px;
padding-left: 70px;
}
.left p {
font-size: 20px;
margin-bottom: 20px;
}
button {
background-color: lightgoldenrodyellow;
}
.right {
height: 90vh;
background: url('astro.png') no-repeat;
background-size: cover;
background-position: center;
display: flex;
align-items: center;
padding: 0 10%;
}