-
Notifications
You must be signed in to change notification settings - Fork 32
/
style.css
89 lines (75 loc) · 1.19 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
:root{
--color: orange;
}
body{
background-color: #2B2B2B;
color: white;
font-family: sans-serif;
}
header{
text-align: center;
padding-bottom: 30px;
}
h1{
color: white;
font-size: 20px;
}
a{
color: white;
}
hr{
border-color: var(--color);
border-width: 1px;
border-top: none;
border-right: none;
border-left: none;
margin-top: 20px;
}
p{
color: white;
}
input[type=text] {
background: transparent;
border: none;
color: white;
font-size: 40px;
font-weight: bold;
border-bottom: 5px solid var(--color);
width: 23rem;
max-width: 95%;
transition: width 0.1s;
text-align: center;
caret-color: var(--color);
}
input:focus{
outline: none;
width: 25rem;
border-bottom: 3px solid var(--color);
}
.thething{
font-size: 40px;
text-align: center;
}
.incontainer{
text-align: center;
padding-bottom: 200px;
}
#result {
padding-bottom: 100px;
}
.result {
text-align: center;
}
::selection {
background: var(--color);
}
::-moz-selection {
background: var(--color);
}
main{
padding: 25px;
word-wrap: break-word;
}
.noline{
text-decoration: none;
}