-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
103 lines (89 loc) · 1.6 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
94
95
96
97
98
99
100
101
102
103
body {
background: #1d1d1d;
box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
border-radius: 20px;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
}
h1 {
font-family: Helvetica, Arial, sans-serif;
color: #a4aeff;
text-align: center;
text-transform: uppercase;
font-size: 22px;
font-weight: normal;
border-top-left-radius: 20px;
border-top-right-radius: 20px;
}
p {
font-family: Helvetica, Arial, sans-serif;
padding-left: 20px;
color: white;
text-align: center;
}
summary {
font-size: 11px;
text-align: center;
}
details {
font-family: Helvetica, Arial, sans-serif;
padding-left: 20px;
color: white;
text-align: left;
font-size: 14px;
}
button {
text-transform: uppercase;
font-weight: bold;
display: block;
margin: 30px auto;
background: #a4aeff;
border-radius: 5px;
width: 200px;
height: 50px;
font-size: 17px;
color: white;
}
button:hover {
background: #76bb40;
border-bottom-color: #111;
}
button:active {
position: relative;
top: 1px;
}
#replace, #regex, #text {
font-size: 14px;
color: black;
background-color: #f7f7f7;
width: 60%;
padding: 5px 5px 8px 8px;
}
#flags {
padding: 10px 10px 15px 15px;
margin-left: 5px;
font-size: 15px;
}
small {
font-family: Helvetica, Arial, sans-serif;
padding-left: 10px;
color: gray;
text-align: center;
}
a:link, a:clicked {
color: lightskyblue;
}
a:hover, a:active {
color: lightblue;
}
footer {
font-family: Helvetica, Arial, sans-serif;
padding-left: 10px;
color: gray;
text-align: center;
font-size: 12px;
}
code {
font-family: Monaco, monospace;
color: lightgray;
}