-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
86 lines (82 loc) · 1.68 KB
/
style.css
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
*{
box-sizing: border-box !important;
}
body{
background-color: rgba(169, 164, 173, 0.705);
}
h1,h2{
margin: 20px 0 0 10px;
}
p{
margin: 5px 0 0 14px;
font-size: 18px;
}
.list{
padding: 8px 1rem;
border-radius: 8px;
background: #88cccc75;
display: flex;
min-height: 60.333px;
flex-direction: row;
flex-wrap: wrap;
margin: 0 25px 50px 25px;
}
.list span{
padding: 8px;
background: #000000;
color: white;
margin-right: 8px;
font-size: 20px;
border-radius: 8px;
line-height: auto;
border: 1px solid transparent;
margin-bottom: 4px;
}
.fr {
display: flex;
justify-content: space-between;
margin-top: 15px;
}
.container{
margin: auto;
}
input{
padding: 6px 2px;
border: none;
font-family: Arial, Helvetica, sans-serif;
border-radius: 5px;
border: 2px solid rgb(17, 255, 88);
padding-left: 10px;
margin-right: 8px;
}
input::placeholder{
font-size: 17rem;
font-family: Arial, Helvetica, sans-serif;
}
.inputs{
margin-top: 20px;
width:50%;
margin:auto;
}
button{
padding: 6px 4px;
color: white;
background: black;
border: none;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
border-radius: 5px;
margin-right: 6px;
transition: .1s all;
border: 1px solid transparent;
}
button:hover{
background: white;
border: 1px solid black;
color: black;
transform: translateY(-2px);
}
h3{
text-align: center;
text-transform: uppercase;
font-family: sans-serif;
}