-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (60 loc) · 1.18 KB
/
style.css
File metadata and controls
62 lines (60 loc) · 1.18 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
body {
font-family: Arial, sans-serif;
background: #121212;
color: #fff;
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
}
h1 {
margin-bottom: 20px;
}
input {
padding: 10px;
width: 300px;
border: none;
border-radius: 5px;
}
<!-- button {
padding: 10px 15px;
margin-left: 10px;
border: none;
background: #03a9f4;
color: white;
border-radius: 5px;
cursor: pointer;
} -->
.card {
background: #1e1e1e;
padding: 20px;
margin-top: 30px;
border-radius: 10px;
width: 300px;
text-align: center;
box-shadow: 0 0 10px rgba(0,255,255,0.2);
}
img {
width: 100px;
border-radius: 50%;
}
a {
color: #03a9f4;
text-decoration: none;
}
#result p {
margin: 10px 0;
}
#firstdiv{
justify-content:center;
flex-wrap:wrap;
}
#firstdiv button{
margin-top:10px;
padding: 10px 15px;
border: none;
background: #03a9f4;
color: white;
border-radius: 5px;
cursor: pointer;
}