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
76 lines (63 loc) · 1.03 KB
/
style.css
File metadata and controls
76 lines (63 loc) · 1.03 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
*{
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;
}
input[value=Submit] {
background-color: white;
border: 0.1em solid black;
border-radius: 0.25em;
color: blue;
padding: 0.5em;
}
input[value=Submit]:hover {
background-color: orange;
}
.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;
}
/* h1 {
background-color: green;
}
div {
background-color: lightblue;
}
p {
background-color: yellow;
}
.container {
position: absolute;
right: 25px;
top: 0;
color: #000;
font-size: 35px;
font-weight: bold;
}
body{background-image: url("paper.gif");
} */