-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
114 lines (99 loc) · 1.71 KB
/
Copy pathstyle.css
File metadata and controls
114 lines (99 loc) · 1.71 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
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
}
body {
background-color: rgb(158, 123, 255);
height: 100vh;
}
.card-container {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.card {
background-color: white;
height: auto;
/* min-height: 60vh; */
width: 40vw;
min-width: 300px;
border-radius: 1rem;
padding: 40px;
}
.card-heading {
display: flex;
flex-direction: column;
gap: 15px;
width: 100%;
}
.card-heading h1,
.card-heading p {
text-align: center;
}
.search {
display: flex;
gap: 10px;
width: 100%;
}
.search input {
flex: 1;
padding: 10px;
font-size: 1rem;
border-radius: 0.5rem;
border: 1px solid #ccc;
}
.search button {
padding: 10px 20px;
font-size: 1rem;
border: none;
border-radius: 0.5rem;
background-color: rgb(158, 123, 255);
color: white;
cursor: pointer;
}
.search button:hover {
background-color: rgb(138, 103, 230);
}
.info-card {
margin-top: 20px;
background-color: #ffffff;
padding: 20px;
border-radius: 1rem;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
box-shadow:0 0px 20px rgba(0, 0, 0, 0.15);
display:none;
}
.info-card .flag {
width: 120px;
height: auto;
border-radius: 0.5rem;
border:1px solid rgb(147, 147, 147);
}
.info-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 15px;
width: 100%;
}
.info-item {
background-color: white;
padding: 15px;
border-radius: 0.5rem;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.info-item .title {
font-weight: 600;
color: #555;
margin-bottom: 5px;
}
.info-item .value {
font-weight: 500;
font-size: 1rem;
}