-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
136 lines (117 loc) · 2.29 KB
/
main.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
128
129
130
131
132
133
134
135
136
/* Write your CSS code in this file */
html, body {
height: 100%;
}
body {
background-image: url("ODRAR10.jpg");
height: 100%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
h1, h3, p, ul, div, input {
display:flex;
justify-content:center;
align-items:center;
}
input {
width: 100px;
height: 100px;
margin: auto;
border: 3px double rgb(102, 200, 218);
box-shadow: 1px 3px 1px #888888;
border-radius: 50%;
-webkit-appearance: none;
font-size: 35px;
text-align: center;
background: url(file.jpg);
background-position: center;
background-size: 150%;
outline: none;
}
::placeholder {
color: #163e80;
text-shadow: 2px 2px 1px #888888;
}
header {
font-family: Impact;
color: rgb(60, 66, 95);
font-size: 20px;
}
h1 {
font-size: 75px;
letter-spacing: 6px;
color: white;
background: url(textcolor.jpg) no-repeat;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
h3 {
margin-top: -50px;
margin-bottom: 30px;
margin-left: 20%
}
p {
font-family: Impact;
font-size: 25px;
color: #01296b;
letter-spacing: 2px;
margin: 30px;
}
#status {
font-family: Raleway;
font-weight: bold;
color: #11346b;
text-shadow: 0 0 30px white, 1px 1px 20px white, -1px -1px 20px white, -1px -1px 0.1px #526583;
animation-name: animate;
animation-duration: 2s;
animation-iteration-count: infinite;
opacity: 1;
}
@keyframes animate {
0% {
opacity: 1;
}
50% {
opacity: 0.5
}
100% {
opacity: 0;
}
}
li {
color: #d60a0a;
}
button {
background-color: rgb(102, 200, 218);
border: none;
color: white;
text-shadow: 2px 2px 1px #888888;
border-radius: 30px;
box-shadow: 2px 4px 1px #888888;
cursor: pointer;
outline: none;
}
button:active {
background-color: rgb(95, 161, 195);
box-shadow: 0 3px #666;
transform: translateY(2px);
}
#submit {
padding: 10px 20px;
margin-top: 20px;
font-size: 20px;
font-weight: bold;
}
#reset, #hint {
padding: 5px 14px;
margin: 20px 5px;
font-size: 16px;
}
.guesses {
margin-left: 7px;
margin-right: 7px;
font-size: 20px;
font-weight: bold;
color: rgb(36, 37, 37);
}