-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
53 lines (48 loc) · 1.13 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
body{
background-color: #ffffff;
}
.container{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f2f2f2;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
font-family: Arial, sans-serif;
transition: background-color 0.3s ease-in-out;
border: 1px solid #cccccc;
margin-bottom: 100px;
position: relative;
z-index: 0;
overflow: hidden;
overflow-y: scroll;
max-height: 100vh;
overflow-x: hidden;
}
.about-cc{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 5vw;
background-color: #ffffff;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1)
transition: background-color 0.3s ease-in-out;
}
.navbar{
}
.footer{
display: flex;
justify-content: center;
align-items: center;
background-color: #f2f2f2;
color: #333333;
padding: 10px;
font-size: 14px;
transition: background-color 0.3s ease-in-out;
border-top: 1px solid #cccccc;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
cursor: pointer;
}