-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclockwise.css
More file actions
113 lines (96 loc) · 1.88 KB
/
Copy pathclockwise.css
File metadata and controls
113 lines (96 loc) · 1.88 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
111
112
113
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #f0f4f8;
color: #333;
padding: 20px;
}
header {
background-color: orange;
color: white;
padding: 20px 0;
text-align: center;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.container {
display: flex;
justify-content: center;
align-items: center;
}
.logo {
width: 100px;
height: auto;
margin-right: 20px;
}
h1 {
font-size: 28px;
}
section {
background-color: white;
margin-top: 20px;
padding: 20px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
h2 {
font-size: 24px;
margin-bottom: 15px;
color: #007BFF;
}
.coordinates-section, .angles-section {
margin-top: 20px;
}
.coordinates-container, .angles-container {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
}
.coordinates-container label, .angles-container label {
font-size: 16px;
margin-bottom: 5px;
color: #555;
}
input[type="number"] {
padding: 10px;
width: 200px;
border-radius: 5px;
border: 1px solid #ddd;
margin-bottom: 10px;
font-size: 16px;
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}
button {
padding: 10px 20px;
border: none;
border-radius: 5px;
background-color: #007BFF;
color: white;
font-size: 16px;
cursor: pointer;
margin-bottom: 10px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
button:hover {
background-color: #0056b3;
}
p {
font-size: 16px;
color: #555;
}
footer {
margin-top: 20px;
text-align: center;
color: #888;
}
input:disabled {
background-color: #f5f5f5;
}
.angles-container input {
width: auto;
}