This repository was archived by the owner on Jun 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscreen.scss
More file actions
94 lines (82 loc) · 1.33 KB
/
screen.scss
File metadata and controls
94 lines (82 loc) · 1.33 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
$color_light: #fafafa;
$color_dark: #303030;
@font-face {
font-family: Roboto;
src: url(roboto/RobotoCondensed-Light.ttf);
}
body{
margin: 0;
color: $color_dark;
font-family: Roboto, sans-serif;
}
nav{
width: 100%;
margin-bottom: 5px;
}
h1{
width: 100%;
text-align: center;
}
#toggle_menu{
cursor: pointer;
padding-top: 5px;
padding-right: 15px;
text-align: right;
}
#theme,
#theme_color,
#base_color,
#contrast_color{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
#theme_color div,
#base_color div,
#contrast_color div{
width: 100px;
height: 40px;
margin: 2px;
border-radius: 2px;
border: solid 4px transparent;
}
#base_color .selected,
#contrast_color .selected{
border: solid 4px black;
}
.light_color{
width: 200px;
height: 75px;
margin: 10px;
margin-bottom: 75px;
}
.dark_color{
width: 100%;
height: 20px;
box-shadow: 0 2px 5px -3px #888;
}
.cont_color{
width: 50px;
height: 50px;
border-radius: 50px;
position: relative;
top: 25px;
float: right;
margin: 5px 15px;
box-shadow: 0 2px 7px -3px #888;
}
.remove{
cursor: pointer;
background-color: red;
color: $color_light;
width: 20px;
height: 20px;
border-radius: 10px;
position: relative;
float: right;
top: -10px;
right: -10px;
text-align: center;
//margin: 0;
//padding-left: 3px;
}