forked from sarahdoi/Oun-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylePages.css
81 lines (67 loc) · 1.36 KB
/
stylePages.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
.welcome h1
{
margin-top: 10%;
margin-right: 50%;
font-size: 50px;
}
.glow {
font-size: 80px;
color: #fff;
text-align: center;
animation: glow 2s ease-in-out infinite alternate;
}
@keyframes glow {
from {
text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px rgb(196,183,247), 0 0 40px rgb(196,183,247), 0 0 50px rgb(196,183,247), 0 0 60px rgb(196,183,247), 0 0 70px rgb(196,183,247);
}
to {
text-shadow: 0 0 20px #fff, 0 0 30px rgb(97,219,235), 0 0 40px rgb(97,219,235), 0 0 50px rgb(97,219,235), 0 0 60px rgb(97,219,235), 0 0 70px rgb(97,219,235), 0 0 80px rgb(97,219,235);
}
}
.button
{
background-color: rgb(41, 33, 78) ;
color: white;
font-size: 40px;
text-decoration: none;
border: 2px solid transparent;
font-weight: bold;
border-radius: 12px;
transition: .4s;
margin-top:2%;
padding: 40px 150px;
display: grid;
margin-left: 25%;
margin-right: 25%;
text-align: center;
}
.button:hover{
background-color: rgb(72,56, 133) ;
}
.link
{
margin-top: 120px;
}
.link a
{
color: rgb(41, 33, 78);
text-decoration:underline;
font-weight: bold;
/*padding: 5px 10px;*/
/*transition: .4s;*/
font-size: 30px;
text-align: center;
}
.link a:hover{
color:rgb(72,56, 133);
}
.link a:active{
color: rgb(18, 7, 172);
}
.viewList
{
margin-top: 300px;
text-align: center;
color: rgb(41, 33, 78);
font-size: 40px;
}