-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
99 lines (85 loc) · 1.81 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/* CSS HEX
--platinum: #D7DFDBff;
--dark-purple: #17162Bff;
--icterine: #F9F050ff;
--electric-purple: #C900F2ff;
--vivid-sky-blue: #00CDF8ff; */
.main {
max-width: 800px;
display: flex;
margin: 100px auto 0px auto;
}
body {
background-image: url("generic-coding-bg.jpg");
background-repeat: no-repeat;
background-size: 100%;
font-family: 'VT323', monospace;
text-align: center;
align-items: center;
height: 100vh;
}
.container {
background: rgba(0, 0, 0, );
max-width: 60%;
margin: auto;
border: 5px solid;
border-color: rgba(0, 0, 0, );
border-radius: 10px;
}
.count-container {
display: flex;
flex-direction: column;
align-items: center;
}
h1 {
color: #D7DFDBff;
font-size: 40px;
text-shadow: 2px 2px black;
background: rgba(0, 0, 0, 0.8);
border-radius: 5px;
padding: 0px 5px 0px 5px;
margin-top: 0px;
margin-bottom: 10px;
}
h2 {
color: #D7DFDBff;
text-shadow: 2px 2px black;
background: rgba(0, 0, 0, 0.8);
border-radius: 5px;
padding: 0px 5px 0px 5px;
font-size: 50px;
margin-top: 0;
margin-bottom: 20px;
}
#save-el {
color: #D7DFDBff;
font-size: 40px;
text-shadow: 2px 2px black;
background: rgba(0, 0, 0, 0.8);
border-radius: 5px;
margin-bottom: 0px;
padding: 0px;
font-size: 50px;
}
button {
font-family: 'VT323', monospace;
border: none;
padding-top: 10px;
padding-bottom: 10px;
color: rgba(0, 0, 0, 0.8);
text-shadow: 1px 1px rgba(255, 255, 255);
font-weight: bold;
width: 300px;
margin-bottom: 5px;
border-radius: 5px;
}
#increment-btn {
padding: 0px 2px 0px 2px;
font-size: 30px;
background: rgba(255, 0, 0, 0.7);
}
#save-btn {
padding: 0px 2px 0px 2px;
font-size: 30px;
background: rgba(0, 255, 0, 0.7);
}