-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
184 lines (155 loc) · 3.06 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
:root{
--primary-color: rgb(210, 70, 0);
--secondary-color: rgb(255, 255, 255);
--primary-font: 'system-ui', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Open Sans', 'Helvetica Neue', 'sans-serif';
}
header{
position: sticky;
top: 0;
z-index: 1;
}
#navbar{
background-color: var(--primary-color);
display: flex;
width: 100%;
height: 6vh;
}
#navbar ul{
display: flex;
margin-left: 30px;
}
#navbar li{
list-style: none;
margin: auto 15px;
}
#navbar a{
font-family: var(--primary-font);
text-decoration: none;
font-weight: bolder;
font-size: larger;
color: var(--secondary-color);
}
#navbar input{
margin: auto 30px auto auto;
padding: 5px 15px;
width: 250px;
height: 35px;
border: 0.2em solid black;
border-radius: 18px;
}
.container{
height: calc(100vh - 6vh);
display: flex;
}
.container1{
background-image: url(imgs/bg1.jpg);
}
.box{
border: 5px solid var(--primary-color);
margin: auto auto 150px auto;
height: 610px;
}
.box img{
opacity: 0.8;
}
.moving-icon a{
text-decoration: none;
}
.moving-icon{
border: 3px solid var(--primary-color);
border-radius: 50%;
height: min-content;
position: fixed;
top: 820px;
right: 80px;
padding: 8px;
}
.container2{
background-image: url(imgs/bg2.jpg);
}
.greet-box{
padding: 100px;
background-color: rgba(40, 40, 40, 0.8);
border: 5px solid var(--primary-color);
display: flex;
flex-direction: column;
margin: auto;
}
.greet-box h1{
color: var(--secondary-color);
font-family: var(--primary-font);
margin: auto auto 20px auto;
text-align: center;
width: 25rem;
font-size: 3rem;
}
.greet-box h1::first-line{
color: var(--primary-color);
}
.greet-box p{
color: var(--primary-color);
font-family: var(--primary-font);
margin: 20px auto;
text-align: center;
}
.greet-box button{
font-family: var(--primary-font);
background-color: var(--primary-color);
border: 2px solid var(--primary-color);
color: rgb(255, 255, 255);
font-weight:700;
margin: 20px auto auto auto;
text-align: center;
padding: 8px 20px;
}
.greet-box button:hover{
cursor: pointer;
}
#footer{
font-family: var(--primary-font);
color: var(--secondary-color);
}
.sec-footer{
background-color: rgb(25, 25, 25);
text-align: center;
display: flex;
height: 20rem;
}
.sec-footer > div{
margin: auto;
width: 35%;
}
.sec-footer > div h1{
font-weight: 500;
font-size: 50px;
margin: 20px;
}
.sec-footer > div p{
margin: 20px;
}
.sec-footer > div a{
text-decoration: none;
}
.sec-footer > div img{
border: 2px solid white;
border-radius: 50%;
margin: 20px;
padding: 5px;
}
.main-footer{
background-color: black;
height: 3rem;
display: flex;
}
.main-footer p{
margin: auto;
}
.main-footer a{
color: rgb(0, 190, 255);
text-decoration: none;
}