-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainStyle.css
More file actions
79 lines (79 loc) · 1.54 KB
/
Copy pathMainStyle.css
File metadata and controls
79 lines (79 loc) · 1.54 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
/*body{
background: url(GreenLivingRoom.jpg) no-repeat center center fixed;
height: 100%;
background-size: cover;
overflow: hidden;
}*/
#back{
z-index: -2;
overflow: hidden;
top: 0;
left: 0;
min-height: 100%;
min-width: 100%;
position: fixed;
filter: blur(4px) opacity(70%) sepia(0.2);
}
#mainbox{
margin: 5% 20%;
padding: 10px 10px 40px 10px;
text-align: center;
background-color: rgba(255,255,255,0.6);
border-radius: 10px;
}
h1{
margin-bottom: 2.5em;
border-bottom: 4px solid red;
}
h3{
font-size: 2em;
padding: 7px;
}
#irc{
font-weight: bolder;
font-size: 1.2em;
}
section{
display: block;
}
section .regdata{
display: inline-flex;
}
section .datalogin{
display: inline-flex;
}
.btn{
background-color: rgba(102,120,20,0.4);
font-family: 'Pacifico', cursive;
font-size: 1.2em;
font-weight: 400;
border-radius: 25%;
padding: 10px;
margin: 10px;
color: darkred;
}
#footer{
background: #48474f;
font-family: 'Merienda', cursive;
font-size: 20px;
display: block;
color: aliceblue;
text-align: center;
position: fixed;
width: 100%;
bottom: 0;
left: 0;
}
.btn:hover{
background-color: seagreen;
animation: ripple 0.8s linear 3;
}
@keyframes ripple{
0%{
box-shadow: 0 0 0 5px rgba(10,50,100,0.5),
0 0 0 10px rgba(10,20,60,0.3);
}
80%{
box-shadow: 0 0 0 20px rgba(100,50,10,0);
}
}