-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
96 lines (81 loc) · 1.27 KB
/
index.css
File metadata and controls
96 lines (81 loc) · 1.27 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
90
91
92
93
94
95
96
div.logo{
height: 350px;
width: 100%;
display: flex;
justify-content: center;
align-content: center;
}
img#logo{
height: 200px;
width: 50%;
}
button{
top: 40%;
}
a#button{
color: white;
transition: 1.5s;
}
a#button:hover{
color: black;
}
.button{
height: 10%;
width: 15%;
background: dodgerblue;
border: solid 5px lime;
color: white;
padding: 15px 32px;
text-align: center;
font-size: 40px;
margin: 4px 2px;
cursor: pointer;
transition: 1.5s;
}
.button:hover{
color: black;
height: 15%;
width: 20%;
border: solid 5px red;
background: cyan;
font-size: 60px;
}
footer{
width: 100%;
height: 80px;
background: mediumseagreen;
position: absolute;
top: 710px;
left: 0;
}
p#footer {
text-align: center;
color: white;
margin-top: 32px;
font-size: 1em;
}
a.footer{
color: white;
}
a.footer:hover{
color: black;
}
@media only screen and (max-width: 900px) {
img#logo{
width: 80%;
}
button.button{
word-wrap: break-word;
text-align: center;
left: 50%;
width: 50%;
}
.button:hover{
width: 50%;
height: 15%;
font-size: 40px;
}
footer{
top: 100%;
}
}