-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
88 lines (74 loc) · 1.32 KB
/
styles.css
File metadata and controls
88 lines (74 loc) · 1.32 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: black;
}
.form_input_fullwidth_icon {
display: flex;
flex-direction: column;
}
li {
list-style-type: none;
display: flex;
flex-direction: column;
justify-content: center;
flex-wrap: wrap;
align-items: center;
}
.container {
max-width: 60%;
margin-inline: auto;
width: 650px;
color: #fff;
min-width: 400px;
text-align: center;
background-color: rgb(2, 37, 25);
padding: 2rem;
margin-top: 2rem;
border-radius: 10px;
box-shadow: 0px 0px 30px rgb(255, 255, 255);
}
input, button {
font-size: 1.2rem;
padding: 10px;
margin-top: 10px;
border: none;
}
.form_button {
background-color: greenyellow;
color: #fff;
font-weight: 900;
text-transform: uppercase;
}
.card_button {
background-color: rgb(155, 255, 5);
color: #fff;
font-weight: 600;
text-transform: uppercase;
}
li {
background-color: rgb(218, 245, 204);
padding: 1rem;
margin-top: 2rem;
gap: 0.5rem;
width: 400px;
border-radius: 10px;
box-shadow: 0px 0px 10px rgb(255, 255, 255);
}
img {
height: 200px;
width: 200px;
}
ul {
display: flex;
gap: 1rem;
justify-content: space-around;
flex-wrap: wrap;
margin-top: 2rem;
}
.invisible {
opacity: 0.5;
}