-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
89 lines (88 loc) · 1.57 KB
/
style.css
File metadata and controls
89 lines (88 loc) · 1.57 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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
img{
height: 100%;
}
.window{
display: flex;
justify-content: space-around;
align-items: flex-start;
margin-top: 20px;
}
#result{
display: flex;
justify-content: flex-start;
align-items: center;
padding: 20px;
width: 75%;
flex-wrap: wrap;
}
.penal{
width: 25%;
border: 2px solid crimson;
margin: 20% 10px;
}
.card{
width: 24%;
margin-right: 1%;
margin-bottom: 10px;
}
.card .name {
background: #e7e7e7;
text-align: center;
padding: 9px 0px;
font-family: sans-serif;
font-weight: 600;
color: #a900ff;
border-radius: 30px;
text-shadow: 0px 0px 5px #0000006b;
}
.card .profile_image {
border: 6px solid green;
border-radius: 50%;
overflow: hidden;
height: 150px;
width: 150px;
margin: 20px auto;
}
.card .title {
text-align: center;
font-weight: bold;
font-family: cursive;
margin-bottom: 15px;
color: crimson;
}
.card {
width: 24%;
padding: 20px;
border: 2px solid crimson;
border-radius: 20px 0px;
}
input.form-control {
width: 90%;
padding: 10px 10px;
margin: 6px 8px;
border: 0;
outline: 0;
border-radius: 50px;
box-shadow: 0px 0px 10px #c7c7c7;
}
#send {
padding: 10px 0px;
width: 90%;
margin: 6px 8px;
border-radius: 50pc;
border: 0;
background: white;
box-shadow: 0px 0px 10px green;
transition: .4s;
cursor: pointer;
}
#send:hover {
background: green;
color: white;
box-shadow: 0px 0px 0px white;
}