-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathL2_CSS.CSS
More file actions
82 lines (73 loc) · 1.42 KB
/
L2_CSS.CSS
File metadata and controls
82 lines (73 loc) · 1.42 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
html,
body {
background-color: floralwhite;
margin: 0px;
margin-bottom: 100px;
}
article {
margin: 30px;
}
#view {
display: flex;
flex-wrap: wrap;
gap: 30px;
justify-content: center;
align-items: center;
}
#view>div {
border-radius: 17px;
width: 300px;
height: 140px;
padding: 40px;
align-self: center;
}
#GenContainer>div {
height: 120px;
padding: 10px 10px 0 10px;
border-radius: 17px 17px 17px 0px;
background-color: rgba(0, 0, 0, 0.1);
}
label {
text-transform: uppercase;
border-radius: 0px 100px 100px 100px;
transition: all .5s;
padding: 10px;
background-color: rgba(200, 200, 200, 0.7);
}
h1 {
font-stretch: 50%;
font-family: Impact, Charcoal, sans-serif;
color: rgba(40, 70, 70, 0.8);
margin-left: 7vw;
}
footer {
background-color: rgba(223, 220, 185, 0.3);
height: 30px;
padding: 30px;
padding-top: 0;
margin-top: 100px;
position: fixed;
left: 0%;
bottom: 0;
width: 100%;
display: flex;
flex-wrap: wrap;
gap: 30px;
justify-content: center;
}
footer>div {
width: 33%;
padding: 13px;
margin-top: 13px;
height: 100%;
color: rgb(20, 35, 35);
background-color: rgba(40, 70, 70, 0.15);
display: flex;
gap: 30px;
text-align: center;
justify-content: space-around;
border-radius: 17px 17px 0px 0px;
}
a {
color: rgb(20, 35, 35);
}