-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
121 lines (110 loc) · 2.33 KB
/
style.css
File metadata and controls
121 lines (110 loc) · 2.33 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
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #222222;
}
.container {
color: white;
text-align: center;
font-size: 80px;
font-family: 'Courier New', Courier, monospace;
background-color: rebeccapurple;
display: flex;
justify-content: center;
align-items: center;
height: 600px;
margin: auto;
margin-top: 10vh;
border: #f5f5f5 10px solid;
padding: 100px;
border-radius: 15px;
width: 950px;
}
h1 {
padding: 10px;
}
.center {
display: flex;
justify-content: center;
align-items: center;
height: 500;
padding-top: 2rem;
}
button {
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
text-align: center;
color: black;
font-size: 25px;
height: 100px;
width: 300px;
border-radius: 100px;
font-size: 70px;
background-color: #bdbdbd;
border: solid 3px white;
color: #fafafa;
}
button:hover {
background-color: #6e0fc7;
border: solid 3px rgb(218, 218, 218);
color: rgb(255, 255, 255);
}
.counter {
font-family: 'Courier New', Courier, monospace;
display: flex;
justify-content: center;
height: 200px;
font-weight: 700;
padding-top: 2.7rem;
font-size: 50px;
color: #cccccc;
}
#color {
color: #2ee4d5;
}
footer {
position: fixed;
bottom: 0;
width: 100%;
text-align: center;
justify-content: center;
align-items: center;
font-family: 'Courier New', Courier, monospace;
color: #9b9b9b;
background-color: #1b1b1b;
padding-top: 6px;
padding-bottom: 4px;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold';
font-size: 1.2rem;
}
@media screen and (max-width: 1050px) {
.container {
width: 650px;
height: 425px;
font-size: 3rem;
}
button {
font-size: 50px;
height: 90%;
width: 30%;
}
}
@media screen and (max-width: 700px) {
.container {
margin-top: 20px;
width: 90%;
height: 350px;
font-size: 2rem;
}
button {
font-size: 50px;
height: 60px;
width: 50%;
font-size: 1.7rem;
}
.counter {
font-size: 2rem;
}
}