-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
127 lines (111 loc) · 2.52 KB
/
style.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
body{
background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7),rgba(0, 0, 0, .2), rgba(0, 0, 0, 0.7)),url('https://source.unsplash.com/1600x900/?nature');
background-size: auto;
min-height: 753px;
margin: 0%;
}
.enter{
width: 70vw;
height: 40px;
color: aliceblue;
background-color: rgba(0, 0, 0, 0.664);
font-size: large;
padding-right:10px;
padding-left:10px;
border: solid;
border-color: rgba(255, 255, 255, 0.548);
font-family: 'Quicksand', sans-serif;
transition: 0.8s;
align-items: center;
}
.inputField{
padding: 20px;
/* text-align: center; */
display: flex;
justify-content: center;
align-items: center;
}
.Press{
width: 100px;
height: 42px;
color: whitesmoke;
background-color: rgba(0, 0, 0, 0.698);
cursor: pointer;
border-style: none;
}
.card{
padding: 10px;
width: 300px;
background-color: rgba(0, 0, 0, 0.712);
color: blanchedalmond;
font-family:'Quicksand', sans-serif;
border-radius: 10px;
margin: 20px;
}
.cards{
padding-top: 50px;
padding-left: 10px;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.header{
text-align: center;
color:whitesmoke;
background-color: rgba(0, 0, 0, 0.671);
border-radius: 10px;
width: 400px;
}
.header h1{
font-family:'Monoton', cursive;
padding-top: 10px;
}
.header ul{
font-family:'Quicksand', sans-serif;
text-align: left;
border: solid;
padding: 10px;
border-radius: 10px;
border-width: 1px;
border-color: whitesmoke;
list-style: none;
white-space: nowrap;
}
.content {
display: flex;
justify-content: space-evenly;
}
.header p{
padding: 15px;
padding-top: 0px;
text-align: justify;
font-family:'Quicksand', sans-serif;
}
.info{
padding-top: 25px;
display: flex;
justify-content: center;
}
.enter:focus{
border-color: rgba(0, 255, 255, 0.589);
outline:none;
}
a{
color: whitesmoke;
/* text-align: center; */
background-color: rgba(0, 0, 0, 0.637);
border-radius: 15px;
padding: 10px;
text-decoration: none;
-webkit-animation:name 2s infinite;
}
.credits{
text-align: center;
padding: 25px;
}
@-webkit-keyframes name {
0% { background-color: rgba(0, 0, 0, 0.637); color: whitesmoke;}
50% { background-color: rgba(0, 0, 0, 0.637); color: whitesmoke;}
51% { background-color: rgba(255, 235, 205, 0.637); color: black;}
100% { background-color: rgba(255, 235, 205, 0.637); color: black;}
}