-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
80 lines (69 loc) · 1.51 KB
/
index.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
h1 {
margin: 5px;
text-shadow:
-1px -1px 0 purple,
1px -1px 0 purple,
-1px 1px 0 purple,
1px 1px 0 purple;
}
.bg {
/*background-image: url("https://images.unsplash.com/photo-1508402476522-c77c2fa4479d?auto=format&fit=crop&w=1350&q=80"); */
}
body {
height: 100%;
background-color: black;
background-image: url("https://images.unsplash.com/photo-1508402476522-c77c2fa4479d?auto=format&fit=crop&w=1350&q=80");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
#boxInput {
/*color: white;*/
font-family: 'Freckle Face', cursive;
font-size: 3em;
color: #ffc600;
text-align: center;
text-shadow: 0 0 5rem #b38600;
opacity: 0.7;
text-align: center;
margin: 25px;
padding: 20px;
/*border: 1px solid red;*/
}
.btn {
background-color: #ffc600;
border: none;
color: purple;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-family: 'Freckle Face', cursive;
font-size: 25px;
margin: 2px 2px;
cursor: pointer;
border-radius: 15px;
border: 1px solid purple;
}
#container {
margin: auto;
width: 500px;
height: 500px;
border: 7px solid #330033;
box-shadow: 0 0 5rem purple;
opacity: 0.5;
}
.boxes {
float: left;
border: 1px solid #330033;
box-sizing: border-box;
transition: all .2s ease;
opacity: 0.8;
}
.highlight {
transform: scale(1.2);
border-color: #ffc600;
box-shadow: 0 0 1rem #ffc600;
background-color: purple;
border-radius: 10px;
}