-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
67 lines (59 loc) · 1.36 KB
/
styles.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
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
font-family: Arial, sans-serif;
background-color: #ffba7e;
}
.scrollable {
width: 100%;
height: 1000px; /* Height of the container */
overflow-y: scroll; /* Enable vertical scrolling */
}
.container {
width: 100%;
text-align: center;
height: 1000px;
background-color: #ffdcb0;
}
.container1 {
width: 100%;
text-align: center;
height: 1500px;
background-color: white;
}
.name-box {
background-color: #ffba7e; /* Box background color */
padding: 30px 10px;
border-radius: 10px;
outline: 8px solid rgb(0, 0, 0);
box-shadow: 10px 10px 20px rgba(0, 0, 0, 10); /* Shadow effect */
display: inline-block;
width: 80%;
margin-top: 300px;
}
h1 {
margin: 0;
font-size: 6rem;
color: #000000; /* Text color */
font-family: 'Anton', sans-serif;
}
.port-box {
background-color: #ffba7e; /* Box background color */
padding: 10px 10px;
border-radius: 10px;
outline: 8px solid rgb(0, 0, 0);
box-shadow: 10px 10px 20px rgba(0, 0, 0, 10); /* Shadow effect */
display: inline-block;
width: 50%;
margin-top: 25px;
}
h2 {
margin: 0;
font-size: 4rem;
color: #000000; /* Text color */
font-family: 'Anton', sans-serif;
}