This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <File.au3> | |
; Get the current coordinates | |
$currentCoords = MouseGetPos() | |
; The x and y coordinates should be saved on one line separated by a comma. Example: 200,400 | |
$newCoordsString = FileRead("./coordinates.txt") | |
; Close the file after reading | |
FileClose("./coordinates.txt") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import plugin from 'tailwindcss/plugin'; | |
/** @type {import('tailwindcss').Config} */ | |
export default { | |
content: ['./src/**/*.{html,js,svelte,ts}'], | |
theme: { | |
extend: {} | |
}, | |
plugins: [ | |
plugin(function ({ addUtilities, addComponents, e, config, theme }) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- html code --> | |
<div></div> | |
/* css code */ | |
div { | |
position: relative; | |
height: 50vh;; | |
background-color: #64953D; | |
} |
NewerOlder