-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
83 lines (72 loc) · 1.58 KB
/
Copy pathstyle.css
File metadata and controls
83 lines (72 loc) · 1.58 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Style the body to center everything */
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh; /* Full screen height */
background: linear-gradient(135deg, #e0e7ff, #f0f9ff);
font-family: "Poppins", sans-serif;
}
/* Container for all your content */
.container {
width: 90%;
max-width: 1000px; /* Limits stretch on large screens */
background: white;
border-radius: 20px; /* Curved borders */
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
padding: 2rem;
transition: all 0.3s ease-in-out;
}
.inside-container{
width: 90%;
max-width: 1000px;
border-radius: 10px;
padding: 2rem;
box-shadow: 0 8px 20px rgba(0, 0,0,0.1);
}
.inside-container h1{
padding: 10px;
}
.inside-container p{
padding: 10px;
}
.inside-container2{
width: 90%;
max-width: 1000px;
border-radius: 10px;
padding: 2rem;
box-shadow: 0 8px 20px rgba(0, 0,0,0.159);
margin-top: 20px;
}
.button{
border-radius:5px;
width: 10px;
height: 10px;
box-shadow: 0 8px 20px rgba(0, 0,0,0.159);
padding:15px;
align-items: center;
}
.input input{
border-radius:5px;
height: fit-content;
}
/* Makes it responsive and fluid */
@media (max-width: 768px) {
.container {
width: 95%;
padding: 1.5rem;
border-radius: 16px;
}
}
@media (max-width: 480px) {
.container {
width: 100%;
padding: 1rem;
border-radius: 12px;
}
}