-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
107 lines (86 loc) · 1.79 KB
/
Copy pathstyle.css
File metadata and controls
107 lines (86 loc) · 1.79 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
body{
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
color: beige;
margin: 0;
}
.container{
background-image: url("img/bg.png");
background-size: cover;
background-repeat: no-repeat;
}
button{
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
color: rgba(0, 0, 0, 0.8);
background-color: beige;
font-size: 18px;
border-radius: 5px;
padding: 5px 10px;
width: 70px;
border-style: none;
border: solid 2px beige;
margin-top: 10px;
}
button:hover{
background-color: rgba(0, 0, 0, 0.7);
color: beige;
}
.top{
background-color: rgba(0,0,0,0.5);
height: 10vh;
text-align: center;
padding: 10px;
border-radius: 10px;
margin: 0 20px;
}
#date{
position:absolute;
top:4vh;
left: 50px;
font-size: 20px;
border: 2px solid beige;
padding: 5px;
width: 120px;
border-radius: 5px;
}
#clock{
position:absolute;
top:4vh;
right: 50px;
font-size: 20px;
border: 2px solid beige;
padding: 5px;
width: 120px;
border-radius: 5px;
}
h1{
margin: auto;
margin-top: 2.8vh;
}
.main{
display: flex;
height: 90vh;
max-width: 98vw;
margin: auto;
}
.widget{
height: 80vh;
background-color: rgba(0,0,0,0.4);
margin: 8px;
padding: 5px;
padding-top: 0px;
width: 32%;
min-width: 300px;
text-align: center;
border-radius: 10px;
}
.notepad{
max-width: 30vw;
font-size: 20px;
}
#note-area{
font-size: 18px;
max-width: 28vw;
max-height: 58vh;
min-height: 25vh;
border-radius: 10px;
}