-
Notifications
You must be signed in to change notification settings - Fork 26
/
style.css
93 lines (78 loc) · 1.35 KB
/
style.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
body {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: whitesmoke;
}
p {
text-align: center;
font-size: 20px;
}
button {
background-color: whitesmoke;
}
input {
border: none;
border-bottom: 1px solid gray;
background-color: whitesmoke;
}
.dark-theme-body {
background-color: #1E1E1E;
}
.dark-theme-username {
color: white;
}
.counter-buttons {
height: 55px;
width: 55px;
font-size: 35px;
border-radius: 50%;
border: none;
}
.dark-theme-input-container {
color: white;
}
.dark-theme-input {
background-color: #1E1E1E;
color: white;
border: none;
border-bottom: 1px solid white;
}
#theme-button {
position: fixed;
top: 15px;
right: 15px;
}
#counter-container {
height: 275px;
width: 300px;
border: 1px solid black;
border-radius: 10px;
box-sizing: border-box;
padding-top: 15px;
display: flex;
flex-direction: column;
align-items: center;
background-color: #353535;
}
#counter {
font-size: 40px;
color: white;
}
#decrement {
background-color: #FF3333;
color: white;
}
#clear {
background-color: #D3D3D3;
color: white;
}
#increment {
background-color: #46FF33;
color: white;
}
#input-container {
margin-top: 20px;
}