-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
128 lines (107 loc) · 1.68 KB
/
app.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
* {
font-family: Fira Sans;
background-color: #eeeeee;
}
main {
margin: auto;
max-width: 75%;
}
#flex_container {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
h1 {
font-size: 25pt;
}
td {
text-align: center;
}
/* images */
img {
max-width: 40%;
height: auto;
}
#img_bg6 {
border: 2px solid #eb1c24;
border-radius: 12px;
}
#img_io {
border: 2px solid #6b80e9;
border-radius: 12px;
}
figcaption {
font-size: 16pt;
margin: 12px 6px;
padding: 16px 32px;
border: 2px dotted #000000;
border-radius: 12px;
display: flexbox;
background-color: #fefee3;
}
#red {
color: red;
background-color: #fefee3;
}
#blue {
color: blue;
background-color: #fefee3;
}
p {
font-size: 14pt;
}
/* buttons */
input {
padding: 16px 32px;
text-decoration: none;
display: inline-block;
font-size: 16pt;
margin: 4px 2px;
transition-duration: 0.4s;
cursor: pointer;
}
#button_bg6 {
background-color: #eb1c24;
color: white;
border: 2px solid #eb1c24;
border-radius: 12px;
}
#button_bg6:hover {
background-color: white;
color: #eb1c24;
}
#button_io {
background-color: #6b80e9;
color: white;
border: 2px solid #6b80e9;
border-radius: 12px;
}
#button_io:hover {
background-color: white;
color: #6b80e9;
}
#button_rev {
background-color: #555555;
color: white;
border: 2px solid #555555;
border-radius: 12px;
}
#button_rev:hover {
background-color: white;
color: #555555;
}
#button_reset {
background-color: black;
color: white;
border: 2px solid black;
border-radius: 12px;
}
#button_reset:hover {
background-color: white;
color: black;
}
/* counter */
.counter {
font-size: 40pt;
}