-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
111 lines (95 loc) · 1.69 KB
/
style.css
File metadata and controls
111 lines (95 loc) · 1.69 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
body {
font-family: 'Segoe UI', Tahoma, sans-serif;
background-color: #f9fafc;
color: #202124;
width: 360px;
margin: 0;
padding: 18px;
}
.container {
text-align: center;
}
h2 {
color: #1a73e8;
font-weight: 700;
margin-bottom: 4px;
}
.subtitle {
font-size: 13px;
color: #5f6368;
margin-bottom: 14px;
}
.input-section input {
width: 95%;
padding: 10px;
border-radius: 8px;
border: 1px solid #dadce0;
margin-bottom: 12px;
font-size: 14px;
outline: none;
transition: border 0.2s ease;
}
.input-section input:focus {
border-color: #1a73e8;
box-shadow: 0 0 0 1px #1a73e8;
}
.button-section {
display: flex;
flex-direction: column;
gap: 8px;
margin-bottom: 12px;
}
.button-section button {
padding: 10px;
border-radius: 8px;
border: none;
font-weight: 600;
font-size: 14px;
background-color: #1a73e8;
color: white;
cursor: pointer;
transition: background-color 0.2s ease, transform 0.1s ease;
}
.button-section button:hover {
background-color: #1558b0;
transform: translateY(-1px);
}
.result {
background-color: #eef3fb;
border: 1px solid #dadce0;
border-radius: 8px;
padding: 10px;
min-height: 60px;
text-align: left;
font-size: 14px;
white-space: pre-wrap;
}
#resultText {
color: #202124;
}
/* 🔒 TRUST METER */
.trust-meter {
margin-top: 10px;
text-align: left;
}
.trust-bar {
width: 0%;
height: 8px;
border-radius: 6px;
background-color: #dadce0;
transition: width 0.6s ease, background-color 0.6s ease;
}
.trust-label {
margin-top: 5px;
font-size: 13px;
font-weight: 600;
color: #5f6368;
text-align: center;
}
footer {
margin-top: 12px;
}
.footer-text {
font-size: 11px;
color: #70757a;
}