forked from flash6083/HacktoberFest-GUI-Projects-and-Games
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubmarine.css
80 lines (69 loc) · 1.27 KB
/
submarine.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
html {
background: url("https://t3.ftcdn.net/jpg/04/02/66/14/240_F_402661479_Nysm7ihwkfDlIChiCX8mgOKhyi6eiWOw.jpg") no-repeat center center fixed;
background-size: cover;
}
body {
background-color: lightgreen;
margin: 0;
font-family: "Montserrat", "Avenir";
}
h1 {
text-align: center;
color: brown;
font-family: 'Comfortaa', cursive;
font-size: 3em;
font-weight: 700;
padding: 20px 0;
margin: 0;
line-height: .66;
background-color: lightgreen;
}
#instructions {
font-size: .33em;
text-align: center;
}
#topNav {
background-color: lightgreen;
text-align: center;
height: 30px;
color: black;
}
.circle {
width: 15%;
background: lightgreen;
padding-bottom: 15%;
float: left;
margin: 2.5%;
border-radius: 50%;
transition: background 0.5s;
-webkit-transition: background 0.5s;
-moz-transition: background 0.5s;
}
#container {
max-width: 600px;
margin: 20px auto;
}
button {
border: none;
background: none;
text-transform: uppercase;
height: 100%;
font-weight: 700;
color: black;
letter-spacing: 1px;
font-size: inherit;
outline: none;
}
button:hover {
color: white;
background: steelblue;
}
.selected {
background: steelblue;
color: white;
}
#info {
display: inline-block;
width: 20%;
font-weight: 700;
}