-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi.css
More file actions
85 lines (80 loc) · 1.5 KB
/
api.css
File metadata and controls
85 lines (80 loc) · 1.5 KB
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
*{
font-family: 'Nunito Sans', sans-serif;
font-family: 'Tilt Neon', sans-serif;
font-size: 1.2rem;
font-weight: 2000;
}
li{
text-align: center;
font-size: large;
}
.ex{
background-image: url("scene.png");
background-position: center;
background-repeat: repeat;
background-size: cover;
height: 100vh;
width: 100%;
display: flex;
position: sticky;
justify-content: center;
align-items: center;
border: 2px solid black;
}
.in{
border: 2px solid black;
height: 70vh;
width: 95vh;
background-color: rgb(253, 253, 253);
opacity: 0.8;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
.name{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}
.top{
justify-content: center;
flex-wrap: wrap;
}
.info{
align-self: center;
margin-left: 1rem;
}
button{
background-color: black;
color: white;
border: 1px solid rgb(249, 124, 145);
border-radius: 10px;
}
/* .btn
{
padding-top: 10px;
} */
.para{
background-color: aliceblue;
height: 30%;
width: 60%;
border: 2px solid black;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
overflow: scroll;
text-decoration: none;
}
.para:hover{
background-color: rgb(176, 226, 245);
transition: 1s;
}
@media (max-width:640px){
.in{
overflow:scroll;
}
}