-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
99 lines (81 loc) · 1.36 KB
/
index.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
body {
font-size: 13px;
font-family: Futura, Arial, sans-serif;
}
/* Style the tab */
#tab {
display: none;
overflow: hidden;
padding: 5px 12px;
}
/* Style the buttons that are used to open the tab content */
.tab button {
border: 1px solid #ccc;
float: left;
cursor: pointer;
padding: 6px 16px;
transition: 0.3s;
background-color: #0000;
}
/* Change background color of buttons on hover */
.tab button:hover {
background-color: #ddd;
}
/* Create an active/current tablink class */
.tab .active {
background-color: #ddd;
}
/* Style the tab content */
.tabcontent {
display: none;
padding: 5px 12px;
}
#home {
display:block;
}
#configuration {
padding: 20px;
border-radius: 25px;
border: 2px solid #dbe2e9;
color: #333;
-webkit-transition-duration: 0.3s;
-moz-transition-duration: 0.3s;
-o-transition-duration: 0.3s;
transition-duration: 0.3s;
}
#configuration label {
padding-bottom: 10px;
}
img {
object-fit: cover;
border-radius: 50%;
width: 230px;
height: 230px;
}
#title {
font-size: large;
font-weight: bold;
}
#subtitle {
font-size: medium;
padding-bottom: 10px;
}
.item {
padding-bottom: 10px;
}
.text {
font-size: small;
}
#colors {
margin-bottom:20px;
}
.formLabel {
margin-bottom: 5px;
}
.formSelect {
margin-bottom: 15px;
}
#closeButton {
margin-top: 15px;
padding-bottom: 5px;
}