forked from 12345k/flames_game
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
57 lines (44 loc) · 823 Bytes
/
style.css
File metadata and controls
57 lines (44 loc) · 823 Bytes
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
*{
color: white;
font-family: 'Poppins';
}
.title, .container h2 {
text-shadow: 2px 2px black;
}
.social a {
padding: 0.5em;
}
.social a:hover {
color: turquoise;
}
.UserInput{
font-size: 20px;
color: black;
}
input[value=Submit] {
background-color: ;
border: 0.1em solid black;
border-radius: 0.25em;
color: black;
}
input[value=Submit]:hover {
background-color:linear-gradient(7deg, rgba(255,41,149,1) 0%, rgba(94,0,255,1) 100%) ;
}
.main-container {
background: rgb(255,41,149);
background: linear-gradient(7deg, rgba(255,41,149,1) 0%, rgba(94,0,255,1) 100%);
border-radius: 2em;
box-shadow: 6px 10px black;
margin-top: 4em;
padding: 4em;
width: 70%;
}
.container h2 {
margin-right: 7.5em;
}
.social {
margin-right: 15em;
}
.social a:hover {
color: turquoise;
}